]> git.ipfire.org Git - thirdparty/cups.git/blob - backend/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / backend / Makefile
1 #
2 # "$Id: Makefile 5131 2006-02-18 05:31:36Z mike $"
3 #
4 # Backend makefile for the Common UNIX Printing System (CUPS).
5 #
6 # Copyright 1997-2006 by Easy Software Products, all rights reserved.
7 #
8 # These coded instructions, statements, and computer programs are the
9 # property of Easy Software Products and are protected by Federal
10 # copyright law. Distribution and use rights are outlined in the file
11 # "LICENSE.txt" which should have been included with this file. If this
12 # file is missing or damaged please contact Easy Software Products
13 # at:
14 #
15 # Attn: CUPS Licensing Information
16 # Easy Software Products
17 # 44141 Airport View Drive, Suite 204
18 # Hollywood, Maryland 20636 USA
19 #
20 # Voice: (301) 373-9600
21 # EMail: cups-info@cups.org
22 # WWW: http://www.cups.org
23 #
24 # This file is subject to the Apple OS-Developed Software exception.
25 #
26
27 include ../Makedefs
28
29 RBACKENDS = ipp lpd
30 UBACKENDS = parallel scsi serial socket usb
31 TARGETS = betest test1284 $(RBACKENDS) $(UBACKENDS)
32 OBJS = betest.o ipp.o lpd.o parallel.o scsi.o \
33 serial.o socket.o test1284.o usb.o
34
35
36 #
37 # Make all targets...
38 #
39
40 all: $(TARGETS)
41
42
43 #
44 # Clean all object files...
45 #
46
47 clean:
48 $(RM) $(OBJS) $(TARGETS) http
49
50
51 #
52 # Update dependencies (without system header dependencies...)
53 #
54
55 depend:
56 makedepend -Y -I.. -fDependencies $(OBJS:.o=.c) >/dev/null 2>&1
57
58
59 #
60 # Install all targets...
61 #
62
63 install: all
64 $(INSTALL_DIR) -m 755 $(SERVERBIN)/backend
65 for file in $(RBACKENDS); do \
66 $(LIBTOOL) $(INSTALL) -m 700 $$file $(SERVERBIN)/backend; \
67 done
68 for file in $(UBACKENDS); do \
69 $(INSTALL_BIN) $$file $(SERVERBIN)/backend; \
70 done
71 $(RM) $(SERVERBIN)/backend/http
72 $(LN) ipp $(SERVERBIN)/backend/http
73
74
75 #
76 # betest
77 #
78
79 betest: betest.o ../cups/$(LIBCUPS)
80 echo Linking $@...
81 $(CC) $(LDFLAGS) -o betest betest.o $(LIBS)
82
83
84 #
85 # test1284
86 #
87
88 test1284: test1284.o ../cups/libcups.a
89 echo Linking $@...
90 $(CC) $(LDFLAGS) -o test1284 test1284.o ../cups/libcups.a \
91 $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
92
93
94 #
95 # ieee1394
96 #
97
98 ieee1394: ieee1394.o ieee1394-linux.o
99 echo Linking $@...
100 $(CC) $(LDFLAGS) -o ieee1394 ieee1394.o ieee1394-linux.o -lraw1394 $(LIBS)
101
102 ieee1394.o: ieee1394.h
103 ieee1394-linux.o: ieee1394.h
104
105
106 #
107 # ipp
108 #
109
110 ipp: ipp.o ../cups/$(LIBCUPS)
111 echo Linking $@...
112 $(CC) $(LDFLAGS) -o ipp ipp.o $(LIBS)
113 $(RM) http
114 $(LN) ipp http
115
116
117 #
118 # lpd
119 #
120
121 lpd: lpd.o ../cups/$(LIBCUPS)
122 echo Linking $@...
123 $(CC) $(LDFLAGS) -o lpd lpd.o $(LIBS)
124
125
126 #
127 # parallel
128 #
129
130 parallel: parallel.o ../cups/$(LIBCUPS)
131 echo Linking $@...
132 $(CC) $(LDFLAGS) -o parallel parallel.o $(LIBS)
133
134
135 #
136 # scsi
137 #
138
139 scsi: scsi.o ../cups/$(LIBCUPS)
140 echo Linking $@...
141 $(CC) $(LDFLAGS) -o scsi scsi.o $(LIBS)
142
143 scsi.o: scsi.c scsi-irix.c scsi-linux.c
144
145
146 #
147 # serial
148 #
149
150 serial: serial.o ../cups/$(LIBCUPS)
151 echo Linking $@...
152 $(CC) $(LDFLAGS) -o serial serial.o $(BACKLIBS) $(LIBS)
153
154
155 #
156 # socket
157 #
158
159 socket: socket.o ../cups/$(LIBCUPS)
160 echo Linking $@...
161 $(CC) $(LDFLAGS) -o socket socket.o $(LIBS)
162
163
164 #
165 # usb
166 #
167
168 usb: usb.o ../cups/$(LIBCUPS)
169 echo Linking $@...
170 $(CC) $(LDFLAGS) -o usb usb.o $(BACKLIBS) $(LIBS)
171 usb.o: usb.c usb-darwin.c usb-unix.c ieee1284.c
172
173
174 #
175 # Dependencies...
176 #
177
178 include Dependencies
179
180
181 #
182 # End of "$Id: Makefile 5131 2006-02-18 05:31:36Z mike $".
183 #