]> git.ipfire.org Git - thirdparty/cups.git/blame - Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / Makefile
CommitLineData
ef416fc2 1#
b423cd4c 2# "$Id: Makefile 5185 2006-02-26 15:27:14Z mike $"
ef416fc2 3#
4# Top-level Makefile for the Common UNIX Printing System (CUPS).
5#
fa73b229 6# Copyright 1997-2006 by Easy Software Products, all rights reserved.
ef416fc2 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
25include Makedefs
26
27#
28# Directories to make...
29#
30
bd7854cb 31DIRS = cups backend berkeley cgi-bin filter locale man monitor \
b423cd4c 32 notifier pdftops scheduler systemv test \
33 $(PHPDIR)
bd7854cb 34
ef416fc2 35
36#
37# Make all targets...
38#
39
40all:
41 chmod +x cups-config
42 for dir in $(DIRS); do\
43 echo Making all in $$dir... ;\
44 (cd $$dir ; $(MAKE) $(MFLAGS)) || exit 1;\
45 done
46
bd7854cb 47
ef416fc2 48#
49# Remove object and target files...
50#
51
52clean:
53 for dir in $(DIRS); do\
54 echo Cleaning in $$dir... ;\
55 (cd $$dir; $(MAKE) $(MFLAGS) clean) || exit 1;\
56 done
57
bd7854cb 58
ef416fc2 59#
60# Make dependencies
61#
62
63depend:
64 for dir in $(DIRS); do\
65 echo Making dependencies in $$dir... ;\
66 (cd $$dir; $(MAKE) $(MFLAGS) depend) || exit 1;\
67 done
68
69
70#
71# Install object and target files...
72#
73
74install: installhdrs
75 for dir in $(DIRS); do\
76 echo Installing in $$dir... ;\
77 (cd $$dir; $(MAKE) $(MFLAGS) install) || exit 1;\
78 done
79 echo Installing in conf...
80 (cd conf; $(MAKE) $(MFLAGS) install)
81 echo Installing in data...
82 (cd data; $(MAKE) $(MFLAGS) install)
83 echo Installing in doc...
84 (cd doc; $(MAKE) $(MFLAGS) install)
85 echo Installing in fonts...
86 (cd fonts; $(MAKE) $(MFLAGS) install)
ef416fc2 87 echo Installing in ppd...
88 (cd ppd; $(MAKE) $(MFLAGS) install)
89 echo Installing in templates...
90 (cd templates; $(MAKE) $(MFLAGS) install)
91 echo Installing cups-config script...
92 $(INSTALL_DIR) $(BINDIR)
93 $(INSTALL_SCRIPT) cups-config $(BINDIR)/cups-config
94 echo Installing startup script...
95 if test "x$(INITDIR)" != "x"; then \
96 $(INSTALL_DIR) $(BUILDROOT)$(INITDIR)/init.d; \
fa73b229 97 $(INSTALL_SCRIPT) init/cups.sh $(BUILDROOT)$(INITDIR)/init.d/cups; \
ef416fc2 98 $(INSTALL_DIR) $(BUILDROOT)$(INITDIR)/rc0.d; \
fa73b229 99 $(INSTALL_SCRIPT) init/cups.sh $(BUILDROOT)$(INITDIR)/rc0.d/K00cups; \
ef416fc2 100 $(INSTALL_DIR) $(BUILDROOT)$(INITDIR)/rc2.d; \
fa73b229 101 $(INSTALL_SCRIPT) init/cups.sh $(BUILDROOT)$(INITDIR)/rc2.d/S99cups; \
ef416fc2 102 $(INSTALL_DIR) $(BUILDROOT)$(INITDIR)/rc3.d; \
fa73b229 103 $(INSTALL_SCRIPT) init/cups.sh $(BUILDROOT)$(INITDIR)/rc3.d/S99cups; \
ef416fc2 104 $(INSTALL_DIR) $(BUILDROOT)$(INITDIR)/rc5.d; \
fa73b229 105 $(INSTALL_SCRIPT) init/cups.sh $(BUILDROOT)$(INITDIR)/rc5.d/S99cups; \
ef416fc2 106 fi
107 if test "x$(INITDIR)" = "x" -a "x$(INITDDIR)" != "x"; then \
108 $(INSTALL_DIR) $(BUILDROOT)$(INITDDIR); \
109 if test "$(INITDDIR)" = "/System/Library/StartupItems/PrintingServices"; then \
e00b005a 110 $(INSTALL_SCRIPT) init/PrintingServices $(BUILDROOT)$(INITDDIR)/PrintingServices; \
111 $(INSTALL_DATA) init/StartupParameters.plist $(BUILDROOT)$(INITDDIR)/StartupParameters.plist; \
ef416fc2 112 $(INSTALL_DIR) $(BUILDROOT)$(INITDDIR)/Resources/English.lproj; \
e00b005a 113 $(INSTALL_DATA) init/Localizable.strings $(BUILDROOT)$(INITDDIR)/Resources/English.lproj/Localizable.strings; \
a4d04587 114 elif test "$(INITDDIR)" = "/System/Library/LaunchDaemons"; then \
e00b005a 115 $(INSTALL_DATA) init/org.cups.cupsd.plist $(BUILDROOT)$(DEFAULT_LAUNCHD_CONF); \
ef416fc2 116 else \
fa73b229 117 $(INSTALL_SCRIPT) init/cups.sh $(BUILDROOT)$(INITDDIR)/cups; \
ef416fc2 118 fi \
119 fi
bd7854cb 120 if test "x$(DBUSDIR)" != "x"; then \
b423cd4c 121 echo Installing cups.conf in $(DBUSDIR)...;\
bd7854cb 122 $(INSTALL_DIR) $(BUILDROOT)$(DBUSDIR); \
123 $(INSTALL_DATA) packaging/cups-dbus.conf $(BUILDROOT)$(DBUSDIR)/cups.conf; \
124 fi
ef416fc2 125
126
127#
128# Install source and header files...
129#
130
131installsrc:
bd7854cb 132 gnutar --dereference --exclude=.svn -cf - . | gnutar -C $(SRCROOT) -xf -
ef416fc2 133
134installhdrs:
135 (cd cups ; $(MAKE) $(MFLAGS) installhdrs) || exit 1;\
136 (cd filter ; $(MAKE) $(MFLAGS) installhdrs) || exit 1;
137
138
139#
140# Run the test suite...
141#
142
143check test: all
144 echo Running CUPS test suite...
145 cd test; ./run-stp-tests.sh
146
147
148#
149# Make software distributions using EPM (http://www.easysw.com/epm)...
150#
151
152EPMFLAGS = -v
153
154aix:
155 epm $(EPMFLAGS) -f aix cups packaging/cups.list
156
157bsd:
158 epm $(EPMFLAGS) -f bsd cups packaging/cups.list
159
160epm:
161 epm $(EPMFLAGS) cups packaging/cups.list
162
163rpm:
164 epm $(EPMFLAGS) -f rpm cups packaging/cups.list
165
166deb:
167 epm $(EPMFLAGS) -f deb cups packaging/cups.list
168
169depot:
170 epm $(EPMFLAGS) -f depot cups packaging/cups.list
171
172pkg:
173 epm $(EPMFLAGS) -f pkg cups packaging/cups.list
174
175tardist:
176 epm $(EPMFLAGS) -f tardist cups packaging/cups.list
177
bd7854cb 178
ef416fc2 179#
b423cd4c 180# End of "$Id: Makefile 5185 2006-02-26 15:27:14Z mike $".
ef416fc2 181#