]> git.ipfire.org Git - thirdparty/cups.git/blame - monitor/Makefile
Use GCC/Clang -MM option to generate make dependencies now, since the "makedepend"
[thirdparty/cups.git] / monitor / Makefile
CommitLineData
d5cfdccb 1#
2# "$Id$"
3#
5b9bc2e0 4# Port monitor makefile for CUPS.
d5cfdccb 5#
b364e9da 6# Copyright 2007-2012 by Apple Inc.
d5cfdccb 7# Copyright 2006 by Easy Software Products.
8#
9# These coded instructions, statements, and computer programs are the
4e8d321f 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/".
d5cfdccb 14#
15# This file is subject to the Apple OS-Developed Software exception.
16#
17
18include ../Makedefs
19
20TARGETS = bcp tbcp
21
22OBJS = bcp.o tbcp.o
23
24
25#
26# Make all targets...
27#
28
29all: $(TARGETS)
30
31
afee307b 32#
33# Make library targets...
34#
35
36libs:
37
38
b741f3bf 39#
40# Make unit tests...
41#
42
43unittests:
44
45
d5cfdccb 46#
47# Clean all object files...
48#
49
50clean:
51 $(RM) $(OBJS) $(TARGETS)
52
53
54#
55# Update dependencies (without system header dependencies...)
56#
57
58depend:
b364e9da 59 $(CC) -MM $(ALL_CFLAGS) $(OBJS:.o=.c) >Dependencies
d5cfdccb 60
61
62#
63# Install all targets...
64#
65
8aef698d 66install: all install-data install-headers install-libs install-exec
67
68
69#
70# Install data files...
71#
72
73install-data:
74
75
76#
77# Install programs...
78#
79
80install-exec:
d5cfdccb 81 $(INSTALL_DIR) -m 755 $(SERVERBIN)/monitor
82 for file in $(TARGETS); do \
83 $(INSTALL_BIN) $$file $(SERVERBIN)/monitor; \
84 done
b9daaaa3 85 if test "x$(SYMROOT)" != "x"; then \
86 $(INSTALL_DIR) $(SYMROOT); \
87 for file in $(TARGETS); do \
88 cp $$file $(SYMROOT); \
89 done \
90 fi
d5cfdccb 91
92
8aef698d 93#
94# Install headers...
95#
96
97install-headers:
98
99
100#
101# Install libraries...
102#
103
104install-libs:
105
106
ad0f4a13 107#
108# Uninstall all targets...
109#
110
111uninstall:
112 for file in $(TARGETS); do \
113 $(RM) $(SERVERBIN)/monitor/$$file; \
114 done
115 -$(RMDIR) $(SERVERBIN)/monitor
116 -$(RMDIR) $(SERVERBIN)
117
118
d5cfdccb 119#
120# bcp
121#
122
123bcp: bcp.o ../cups/$(LIBCUPS)
124 echo Linking $@...
125 $(CC) $(LDFLAGS) -o $@ bcp.o $(LIBS)
126
127
128#
129# tbcp
130#
131
132tbcp: tbcp.o ../cups/$(LIBCUPS)
133 echo Linking $@...
134 $(CC) $(LDFLAGS) -o $@ tbcp.o $(LIBS)
135
136
137#
138# Dependencies...
139#
5b9bc2e0 140
d5cfdccb 141include Dependencies
142
143
144#
145# End of "$Id$".
146#