]> git.ipfire.org Git - thirdparty/cups.git/blame - berkeley/Makefile
Merge changes from CUPS trunk, r7566.
[thirdparty/cups.git] / berkeley / Makefile
CommitLineData
ef416fc2 1#
bc44d920 2# "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $"
ef416fc2 3#
4# Berkeley commands makefile for the Common UNIX Printing System (CUPS).
5#
50fe7201 6# Copyright 2007-2008 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
18TARGETS = lpc lpq lpr lprm
19OBJS = lpc.o lpq.o lpr.o lprm.o
20
21
22#
23# Make all targets...
24#
25
26all: $(TARGETS)
27
28
c9fc04c6
MS
29#
30# Make library targets...
31#
32
33libs:
34
35
ef416fc2 36#
37# Clean all object files...
38#
39
40clean:
41 $(RM) $(OBJS) $(TARGETS)
42
43
44#
45# Update dependencies (without system header dependencies...)
46#
47
48depend:
49 makedepend -Y -I.. -fDependencies $(OBJS:.o=.c) >/dev/null 2>&1
50
51
52#
53# Install all targets...
54#
55
50fe7201
MS
56install: all install-data install-headers install-libs install-exec
57
58
59#
60# Install data files...
61#
62
63install-data:
64
65
66#
67# Install programs...
68#
69
70install-exec:
bd7854cb 71 $(INSTALL_DIR) -m 755 $(BINDIR)
ef416fc2 72 $(INSTALL_BIN) lpq $(BINDIR)
73 $(INSTALL_BIN) lpr $(BINDIR)
74 $(INSTALL_BIN) lprm $(BINDIR)
bd7854cb 75 $(INSTALL_DIR) -m 755 $(SBINDIR)
ef416fc2 76 $(INSTALL_BIN) lpc $(SBINDIR)
09a101d6 77 if test "x$(SYMROOT)" != "x"; then \
78 $(INSTALL_DIR) $(SYMROOT); \
79 for file in $(TARGETS); do \
80 cp $$file $(SYMROOT); \
81 done \
82 fi
ef416fc2 83
84
50fe7201
MS
85#
86# Install headers...
87#
88
89install-headers:
90
91
92#
93# Install libraries...
94#
95
96install-libs:
97
98
757d2cad 99#
100# Uninstall all targets...
101#
102
103uninstall:
104 $(RM) $(BINDIR)/lpq
105 $(RM) $(BINDIR)/lpr
106 $(RM) $(BINDIR)/lprm
107 $(RM) $(SBINDIR)/lpc
108 -$(RMDIR) $(SBINDIR)
109 -$(RMDIR) $(BINDIR)
110
111
ef416fc2 112#
113# lpc
114#
115
116lpc: lpc.o ../cups/$(LIBCUPS)
117 echo Linking $@...
118 $(CC) $(LDFLAGS) -o lpc lpc.o $(LIBS)
119
120
121#
122# lpq
123#
124
125lpq: lpq.o ../cups/$(LIBCUPS)
126 echo Linking $@...
127 $(CC) $(LDFLAGS) -o lpq lpq.o $(LIBS)
128
129
130#
131# lpr
132#
133
134lpr: lpr.o ../cups/$(LIBCUPS)
135 echo Linking $@...
136 $(CC) $(LDFLAGS) -o lpr lpr.o $(LIBS)
137
138
139#
140# lprm
141#
142
143lprm: lprm.o ../cups/$(LIBCUPS)
144 echo Linking $@...
145 $(CC) $(LDFLAGS) -o lprm lprm.o $(LIBS)
146
147
148#
149# Dependencies...
150#
151
152include Dependencies
153
154
155#
bc44d920 156# End of "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $".
ef416fc2 157#