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