]> git.ipfire.org Git - thirdparty/cups.git/blame - berkeley/Makefile
Merge changes from CUPS 1.7svn-r10755.
[thirdparty/cups.git] / berkeley / Makefile
CommitLineData
ef416fc2 1#
b19ccc9e 2# "$Id: Makefile 7871 2008-08-27 21:12:43Z mike $"
ef416fc2 3#
321d8d57 4# Berkeley commands makefile for CUPS.
ef416fc2 5#
12f89d24 6# Copyright 2007-2012 by Apple Inc.
bd7854cb 7# Copyright 1997-2006 by Easy Software Products, all rights reserved.
ef416fc2 8#
9# These coded instructions, statements, and computer programs are the
bc44d920 10# property of Apple Inc. and are protected by Federal copyright
11# law. Distribution and use rights are outlined in the file "LICENSE.txt"
12# which should have been included with this file. If this file is
13# file is missing or damaged, see the license at "http://www.cups.org/".
ef416fc2 14#
15
16include ../Makedefs
17
5f64df29 18
ef416fc2 19TARGETS = lpc lpq lpr lprm
20OBJS = lpc.o lpq.o lpr.o lprm.o
21
22
23#
24# Make all targets...
25#
26
27all: $(TARGETS)
28
29
c9fc04c6
MS
30#
31# Make library targets...
32#
33
34libs:
35
36
5f64df29
MS
37#
38# Make unit tests...
39#
40
41unittests:
42
43
ef416fc2 44#
45# Clean all object files...
46#
47
48clean:
49 $(RM) $(OBJS) $(TARGETS)
50
51
52#
53# Update dependencies (without system header dependencies...)
54#
55
56depend:
12f89d24 57 $(CC) -MM $(ALL_CFLAGS) $(OBJS:.o=.c) >Dependencies
ef416fc2 58
59
60#
61# Install all targets...
62#
63
50fe7201
MS
64install: all install-data install-headers install-libs install-exec
65
66
67#
68# Install data files...
69#
70
71install-data:
72
73
74#
75# Install programs...
76#
77
78install-exec:
e07d4801 79 echo Installing Berkeley user printing commands in $(BINDIR)...
bd7854cb 80 $(INSTALL_DIR) -m 755 $(BINDIR)
ef416fc2 81 $(INSTALL_BIN) lpq $(BINDIR)
82 $(INSTALL_BIN) lpr $(BINDIR)
83 $(INSTALL_BIN) lprm $(BINDIR)
e07d4801 84 echo Installing Berkeley admin printing commands in $(BINDIR)...
bd7854cb 85 $(INSTALL_DIR) -m 755 $(SBINDIR)
ef416fc2 86 $(INSTALL_BIN) lpc $(SBINDIR)
09a101d6 87 if test "x$(SYMROOT)" != "x"; then \
88 $(INSTALL_DIR) $(SYMROOT); \
89 for file in $(TARGETS); do \
90 cp $$file $(SYMROOT); \
c1420c87 91 dsymutil $(SYMROOT)/$$file; \
09a101d6 92 done \
93 fi
ef416fc2 94
95
50fe7201
MS
96#
97# Install headers...
98#
99
100install-headers:
101
102
103#
104# Install libraries...
105#
106
107install-libs:
108
109
757d2cad 110#
111# Uninstall all targets...
112#
113
114uninstall:
115 $(RM) $(BINDIR)/lpq
116 $(RM) $(BINDIR)/lpr
117 $(RM) $(BINDIR)/lprm
118 $(RM) $(SBINDIR)/lpc
119 -$(RMDIR) $(SBINDIR)
120 -$(RMDIR) $(BINDIR)
121
122
ef416fc2 123#
124# lpc
125#
126
127lpc: lpc.o ../cups/$(LIBCUPS)
128 echo Linking $@...
129 $(CC) $(LDFLAGS) -o lpc lpc.o $(LIBS)
130
131
132#
133# lpq
134#
135
136lpq: lpq.o ../cups/$(LIBCUPS)
137 echo Linking $@...
138 $(CC) $(LDFLAGS) -o lpq lpq.o $(LIBS)
139
140
141#
142# lpr
143#
144
145lpr: lpr.o ../cups/$(LIBCUPS)
146 echo Linking $@...
147 $(CC) $(LDFLAGS) -o lpr lpr.o $(LIBS)
148
149
150#
151# lprm
152#
153
154lprm: lprm.o ../cups/$(LIBCUPS)
155 echo Linking $@...
156 $(CC) $(LDFLAGS) -o lprm lprm.o $(LIBS)
157
158
159#
160# Dependencies...
161#
162
163include Dependencies
164
165
166#
b19ccc9e 167# End of "$Id: Makefile 7871 2008-08-27 21:12:43Z mike $".
ef416fc2 168#