]> git.ipfire.org Git - thirdparty/cups.git/blob - Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / Makefile
1 #
2 # "$Id: Makefile 6332 2007-03-12 16:08:51Z mike $"
3 #
4 # Top-level Makefile for the Common UNIX Printing System (CUPS).
5 #
6 # Copyright 1997-2007 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-3142 USA
19 #
20 # Voice: (301) 373-9600
21 # EMail: cups-info@cups.org
22 # WWW: http://www.cups.org
23 #
24
25 include Makedefs
26
27 #
28 # Directories to make...
29 #
30
31 DIRS = cups backend berkeley cgi-bin filter locale man monitor \
32 notifier $(PDFTOPS) scheduler systemv test \
33 $(PHPDIR) \
34 conf data doc fonts ppd templates
35
36
37 #
38 # Make all targets...
39 #
40
41 all:
42 chmod +x cups-config
43 for dir in $(DIRS); do\
44 echo Making all in $$dir... ;\
45 (cd $$dir ; $(MAKE) $(MFLAGS)) || exit 1;\
46 done
47
48
49 #
50 # Remove object and target files...
51 #
52
53 clean:
54 for dir in $(DIRS); do\
55 echo Cleaning in $$dir... ;\
56 (cd $$dir; $(MAKE) $(MFLAGS) clean) || exit 1;\
57 done
58
59
60 #
61 # Remove all non-distribution files...
62 #
63
64 distclean: clean
65 $(RM) Makedefs config.h config.log config.status
66 $(RM) cups-config conf/cupsd.conf conf/pam.std
67 $(RM) doc/help/standard.html doc/index.html
68 $(RM) init/cups.sh init/cups-lpd
69 $(RM) man/cups-deviced.man man/cups-driverd.man
70 $(RM) man/cups-lpd.man man/cupsaddsmb.man man/cupsd.man
71 $(RM) man/cupsd.conf.man man/lpoptions.man
72 $(RM) packaging/cups.list
73 $(RM) templates/edit-config.tmpl templates/header.tmpl
74 -$(RM) doc/*/index.html
75 -$(RM) templates/*/edit-config.tmpl
76 -$(RM) templates/*/header.tmpl
77 -$(RM) -r autom4te*.cache
78
79
80 #
81 # Make dependencies
82 #
83
84 depend:
85 for dir in $(DIRS); do\
86 echo Making dependencies in $$dir... ;\
87 (cd $$dir; $(MAKE) $(MFLAGS) depend) || exit 1;\
88 done
89
90
91 #
92 # Install object and target files...
93 #
94
95 install: installhdrs
96 for dir in $(DIRS); do\
97 echo Installing in $$dir... ;\
98 (cd $$dir; $(MAKE) $(MFLAGS) install) || exit 1;\
99 done
100 echo Installing cups-config script...
101 $(INSTALL_DIR) -m 755 $(BINDIR)
102 $(INSTALL_SCRIPT) cups-config $(BINDIR)/cups-config
103 if test "x$(INITDIR)" != x; then \
104 echo Installing init scripts...; \
105 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(INITDIR)/init.d; \
106 $(INSTALL_SCRIPT) init/cups.sh $(BUILDROOT)$(INITDIR)/init.d/cups; \
107 for level in $(RCLEVELS); do \
108 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(INITDIR)/rc$${level}.d; \
109 $(LN) ../init.d/cups $(BUILDROOT)$(INITDIR)/rc$${level}.d/S$(RCSTART)cups; \
110 if test `uname` = HP-UX; then \
111 level=`expr $$level - 1`; \
112 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(INITDIR)/rc$${level}.d; \
113 fi; \
114 $(LN) ../init.d/cups $(BUILDROOT)$(INITDIR)/rc$${level}.d/K$(RCSTOP)cups; \
115 done; \
116 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(INITDIR)/rc0.d; \
117 $(LN) ../init.d/cups $(BUILDROOT)$(INITDIR)/rc0.d/K$(RCSTOP)cups; \
118 fi
119 if test "x$(INITDIR)" = x -a "x$(INITDDIR)" != x; then \
120 $(INSTALL_DIR) $(BUILDROOT)$(INITDDIR); \
121 if test "$(INITDDIR)" = "/System/Library/StartupItems/PrintingServices"; then \
122 echo Installing StartupItems files...; \
123 $(INSTALL_SCRIPT) init/PrintingServices $(BUILDROOT)$(INITDDIR)/PrintingServices; \
124 $(INSTALL_DATA) init/StartupParameters.plist $(BUILDROOT)$(INITDDIR)/StartupParameters.plist; \
125 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(INITDDIR)/Resources/English.lproj; \
126 $(INSTALL_DATA) init/Localizable.strings $(BUILDROOT)$(INITDDIR)/Resources/English.lproj/Localizable.strings; \
127 elif test "$(INITDDIR)" = "/System/Library/LaunchDaemons"; then \
128 echo Installing LaunchDaemons configuration files...; \
129 $(INSTALL_DATA) init/org.cups.cupsd.plist $(BUILDROOT)$(DEFAULT_LAUNCHD_CONF); \
130 $(INSTALL_DATA) init/org.cups.cups-lpd.plist $(BUILDROOT)/System/Library/LaunchDaemons; \
131 else \
132 echo Installing RC script...; \
133 $(INSTALL_SCRIPT) init/cups.sh $(BUILDROOT)$(INITDDIR)/cups; \
134 fi \
135 fi
136 if test "x$(DBUSDIR)" != x; then \
137 echo Installing cups.conf in $(DBUSDIR)...;\
138 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(DBUSDIR)/system.d; \
139 $(INSTALL_DATA) packaging/cups-dbus.conf $(BUILDROOT)$(DBUSDIR)/system.d/cups.conf; \
140 fi
141 if test "x$(XINETD)" != x; then \
142 echo Installing xinetd configuration file for cups-lpd...; \
143 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(XINETD); \
144 $(INSTALL_DATA) init/cups-lpd $(BUILDROOT)$(XINETD)/cups-lpd; \
145 fi
146 if test "x$(MENUDIR)" != x; then \
147 echo Installing desktop menu...; \
148 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(MENUDIR); \
149 $(INSTALL_DATA) desktop/cups.desktop $(BUILDROOT)$(MENUDIR); \
150 fi
151 if test "x$(ICONDIR)" != x; then \
152 echo Installing desktop icons...; \
153 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(ICONDIR)/hicolor/16x16/apps; \
154 $(INSTALL_DATA) desktop/cups-16.png $(BUILDROOT)$(ICONDIR)/hicolor/16x16/apps/cups.png; \
155 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(ICONDIR)/hicolor/32x32/apps; \
156 $(INSTALL_DATA) desktop/cups-32.png $(BUILDROOT)$(ICONDIR)/hicolor/32x32/apps/cups.png; \
157 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(ICONDIR)/hicolor/64x64/apps; \
158 $(INSTALL_DATA) desktop/cups-64.png $(BUILDROOT)$(ICONDIR)/hicolor/64x64/apps/cups.png; \
159 $(INSTALL_DIR) -m 755 $(BUILDROOT)$(ICONDIR)/hicolor/128x128/apps; \
160 $(INSTALL_DATA) desktop/cups-128.png $(BUILDROOT)$(ICONDIR)/hicolor/128x128/apps/cups.png; \
161 fi
162
163
164 #
165 # Install source and header files...
166 #
167
168 installsrc:
169 gnutar --dereference --exclude=.svn -cf - . | gnutar -C $(SRCROOT) -xf -
170
171 installhdrs:
172 (cd cups ; $(MAKE) $(MFLAGS) installhdrs) || exit 1;\
173 (cd filter ; $(MAKE) $(MFLAGS) installhdrs) || exit 1;
174
175
176 #
177 # Uninstall object and target files...
178 #
179
180 uninstall:
181 for dir in $(DIRS); do\
182 echo Uninstalling in $$dir... ;\
183 (cd $$dir; $(MAKE) $(MFLAGS) uninstall) || exit 1;\
184 done
185 echo Uninstalling cups-config script...
186 $(RM) $(BINDIR)/cups-config
187 -$(RMDIR) $(BINDIR)
188 echo Uninstalling startup script...
189 if test "x$(INITDIR)" != x; then \
190 $(RM) $(BUILDROOT)$(INITDIR)/init.d/cups; \
191 $(RMDIR) $(BUILDROOT)$(INITDIR)/init.d; \
192 $(RM) $(BUILDROOT)$(INITDIR)/rc0.d/K00cups; \
193 $(RMDIR) $(BUILDROOT)$(INITDIR)/rc0.d; \
194 $(RM) $(BUILDROOT)$(INITDIR)/rc2.d/S99cups; \
195 $(RMDIR) $(BUILDROOT)$(INITDIR)/rc2.d; \
196 $(RM) $(BUILDROOT)$(INITDIR)/rc3.d/S99cups; \
197 $(RMDIR) $(BUILDROOT)$(INITDIR)/rc3.d; \
198 $(RM) $(BUILDROOT)$(INITDIR)/rc5.d/S99cups; \
199 $(RMDIR) $(BUILDROOT)$(INITDIR)/rc5.d; \
200 fi
201 if test "x$(INITDIR)" = x -a "x$(INITDDIR)" != x; then \
202 if test "$(INITDDIR)" = "/System/Library/StartupItems/PrintingServices"; then \
203 $(RM) $(BUILDROOT)$(INITDDIR)/PrintingServices; \
204 $(RM) $(BUILDROOT)$(INITDDIR)/StartupParameters.plist; \
205 $(RM) $(BUILDROOT)$(INITDDIR)/Resources/English.lproj/Localizable.strings; \
206 $(RMDIR) $(BUILDROOT)$(INITDDIR)/Resources/English.lproj; \
207 elif test "$(INITDDIR)" = "/System/Library/LaunchDaemons"; then \
208 $(RM) $(BUILDROOT)$(DEFAULT_LAUNCHD_CONF); \
209 else \
210 $(INSTALL_SCRIPT) init/cups.sh $(BUILDROOT)$(INITDDIR)/cups; \
211 fi \
212 $(RMDIR) $(BUILDROOT)$(INITDDIR); \
213 fi
214 if test "x$(DBUSDIR)" != x; then \
215 echo Uninstalling cups.conf in $(DBUSDIR)...;\
216 $(RM) $(BUILDROOT)$(DBUSDIR)/cups.conf; \
217 $(RMDIR) $(BUILDROOT)$(DBUSDIR); \
218 fi
219 $(RM) $(BUILDROOT)/etc/xinetd.d/cups-lpd
220 $(RM) $(BUILDROOT)/usr/share/applications/cups.desktop
221 $(RM) $(BUILDROOT)/usr/share/icons/hicolor/16x16/apps/cups.png
222 $(RM) $(BUILDROOT)/usr/share/icons/hicolor/32x32/apps/cups.png
223 $(RM) $(BUILDROOT)/usr/share/icons/hicolor/64x64/apps/cups.png
224 $(RM) $(BUILDROOT)/usr/share/icons/hicolor/128x128/apps/cups.png
225
226
227 #
228 # Run the test suite...
229 #
230
231 test: all
232 echo Running CUPS test suite...
233 cd test; ./run-stp-tests.sh
234
235
236 check: all
237 echo Running CUPS test suite with defaults...
238 cd test; ./run-stp-tests.sh 1 0 n
239
240
241 #
242 # Make software distributions using EPM (http://www.easysw.com/epm/)...
243 #
244
245 EPMFLAGS = -v --output-dir dist $(EPMARCH)
246
247 aix bsd deb depot inst pkg setld slackware swinstall tardist:
248 epm $(EPMFLAGS) -f $@ cups packaging/cups.list
249
250 epm:
251 epm $(EPMFLAGS) -s packaging/installer.gif cups packaging/cups.list
252
253 osx:
254 epm $(EPMFLAGS) -f osx -s packaging/installer.tif cups packaging/cups.list
255
256 rpm:
257 epm $(EPMFLAGS) -f rpm -s packaging/installer.gif cups packaging/cups.list
258
259 .PHONEY: dist
260 dist: all
261 $(RM) -r dist
262 $(MAKE) $(MFLAGS) epm
263 case `uname` in \
264 *BSD*) $(MAKE) $(MFLAGS) bsd;; \
265 Darwin*) $(MAKE) $(MFLAGS) osx;; \
266 IRIX*) $(MAKE) $(MFLAGS) tardist;; \
267 Linux*) $(MAKE) $(MFLAGS) rpm;; \
268 SunOS*) $(MAKE) $(MFLAGS) pkg;; \
269 esac
270
271
272 #
273 # End of "$Id: Makefile 6332 2007-03-12 16:08:51Z mike $".
274 #