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