]> git.ipfire.org Git - thirdparty/cups.git/blame - monitor/Makefile
Fix up svn:keywords for all files.
[thirdparty/cups.git] / monitor / Makefile
CommitLineData
bd7854cb 1#
f2d18633 2# "$Id$"
bd7854cb 3#
321d8d57 4# Port monitor makefile for CUPS.
bd7854cb 5#
12f89d24 6# Copyright 2007-2012 by Apple Inc.
bd7854cb 7# Copyright 2006 by Easy Software Products.
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/".
bd7854cb 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
c9fc04c6
MS
32#
33# Make library targets...
34#
35
36libs:
37
38
5f64df29
MS
39#
40# Make unit tests...
41#
42
43unittests:
44
45
bd7854cb 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:
12f89d24 59 $(CC) -MM $(ALL_CFLAGS) $(OBJS:.o=.c) >Dependencies
bd7854cb 60
61
62#
63# Install all targets...
64#
65
50fe7201
MS
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:
bd7854cb 81 $(INSTALL_DIR) -m 755 $(SERVERBIN)/monitor
82 for file in $(TARGETS); do \
83 $(INSTALL_BIN) $$file $(SERVERBIN)/monitor; \
84 done
09a101d6 85 if test "x$(SYMROOT)" != "x"; then \
86 $(INSTALL_DIR) $(SYMROOT); \
87 for file in $(TARGETS); do \
88 cp $$file $(SYMROOT); \
cb7f98ee 89 dsymutil $(SYMROOT)/$$file; \
09a101d6 90 done \
91 fi
bd7854cb 92
93
50fe7201
MS
94#
95# Install headers...
96#
97
98install-headers:
99
100
101#
102# Install libraries...
103#
104
105install-libs:
106
107
757d2cad 108#
109# Uninstall all targets...
110#
111
112uninstall:
113 for file in $(TARGETS); do \
114 $(RM) $(SERVERBIN)/monitor/$$file; \
115 done
116 -$(RMDIR) $(SERVERBIN)/monitor
117 -$(RMDIR) $(SERVERBIN)
118
119
bd7854cb 120#
121# bcp
122#
123
124bcp: bcp.o ../cups/$(LIBCUPS)
125 echo Linking $@...
126 $(CC) $(LDFLAGS) -o $@ bcp.o $(LIBS)
127
128
129#
130# tbcp
131#
132
133tbcp: tbcp.o ../cups/$(LIBCUPS)
134 echo Linking $@...
135 $(CC) $(LDFLAGS) -o $@ tbcp.o $(LIBS)
136
137
138#
139# Dependencies...
140#
321d8d57 141
bd7854cb 142include Dependencies
143
144
145#
f2d18633 146# End of "$Id$".
bd7854cb 147#