]> git.ipfire.org Git - thirdparty/cups.git/blob - notifier/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / notifier / Makefile
1 #
2 # "$Id: Makefile 6563 2007-06-18 22:18:46Z mike $"
3 #
4 # Notifier makefile for the Common UNIX Printing System (CUPS).
5 #
6 # Copyright 1997-2007 by Easy Software Products, all rights reserved.
7 #
8 # These coded instructions, statements, and computer programs are the
9 # property of Easy Software Products and are protected by Federal
10 # copyright law. Distribution and use rights are outlined in the file
11 # "LICENSE.txt" which should have been included with this file. If this
12 # file is missing or damaged please contact Easy Software Products
13 # at:
14 #
15 # Attn: CUPS Licensing Information
16 # Easy Software Products
17 # 44141 Airport View Drive, Suite 204
18 # Hollywood, Maryland 20636 USA
19 #
20 # Voice: (301) 373-9600
21 # EMail: cups-info@cups.org
22 # WWW: http://www.cups.org
23 #
24
25 include ../Makedefs
26
27
28 TARGETS = mailto rss testnotify
29 OBJS = mailto.o rss.o testnotify.o
30
31
32 #
33 # Make all targets...
34 #
35
36 all: $(TARGETS)
37
38
39 #
40 # Clean all object files...
41 #
42
43 clean:
44 $(RM) $(OBJS) $(TARGETS)
45
46
47 #
48 # Install all targets...
49 #
50
51 install: all
52 $(INSTALL_DIR) -m 755 $(SERVERBIN)/notifier
53 for file in $(TARGETS); do \
54 $(INSTALL_BIN) $$file $(SERVERBIN)/notifier; \
55 done
56 $(INSTALL_DIR) -m 755 $(CACHEDIR)/rss
57 -chgrp $(CUPS_GROUP) $(CACHEDIR)/rss
58 if test "x$(SYMROOT)" != "x"; then \
59 $(INSTALL_DIR) $(SYMROOT); \
60 for file in $(TARGETS); do \
61 cp $$file $(SYMROOT); \
62 done \
63 fi
64
65
66 #
67 # Uninstall all targets...
68 #
69
70 uninstall:
71 for file in $(TARGETS); do \
72 $(RM) $(SERVERBIN)/notifier/$$file; \
73 done
74 -$(RMDIR) $(SERVERBIN)/notifier
75 -$(RMDIR) $(SERVERBIN)
76 -$(RMDIR) $(CACHEDIR)/rss
77
78
79 #
80 # Update dependencies (without system header dependencies...)
81 #
82
83 depend:
84 makedepend -Y -I.. -fDependencies $(OBJS:.o=.c) >/dev/null 2>&1
85
86
87 #
88 # mailto
89 #
90
91 mailto: mailto.o ../cups/$(LIBCUPS)
92 echo Linking $@...
93 $(CC) $(LDFLAGS) -o mailto mailto.o $(LIBS)
94
95
96 #
97 # rss
98 #
99
100 rss: rss.o ../cups/$(LIBCUPS)
101 echo Linking $@...
102 $(CC) $(LDFLAGS) -o rss rss.o $(LIBS)
103
104
105 #
106 # testnotify
107 #
108
109 testnotify: testnotify.o ../cups/$(LIBCUPS)
110 echo Linking $@...
111 $(CC) $(LDFLAGS) -o testnotify testnotify.o $(LIBS)
112
113
114 $(OBJS): ../Makedefs
115
116 include Dependencies
117
118
119 #
120 # End of "$Id: Makefile 6563 2007-06-18 22:18:46Z mike $".
121 #