]> git.ipfire.org Git - thirdparty/cups.git/blob - data/Makefile
Remove all of the Subversion keywords from various source files.
[thirdparty/cups.git] / data / Makefile
1 #
2 # Datafile makefile for CUPS.
3 #
4 # Copyright 2007-2014 by Apple Inc.
5 # Copyright 1993-2006 by Easy Software Products.
6 #
7 # These coded instructions, statements, and computer programs are the
8 # property of Apple Inc. and are protected by Federal copyright
9 # law. Distribution and use rights are outlined in the file "LICENSE.txt"
10 # which should have been included with this file. If this file is
11 # file is missing or damaged, see the license at "http://www.cups.org/".
12 #
13
14 include ../Makedefs
15
16 #
17 # Data files...
18 #
19
20 PPDCFILES = \
21 epson.h \
22 font.defs \
23 hp.h \
24 label.h \
25 media.defs \
26 raster.defs
27
28
29 #
30 # Make everything...
31 #
32
33 all:
34
35
36 #
37 # Make library targets...
38 #
39
40 libs:
41
42
43 #
44 # Make unit tests...
45 #
46
47 unittests:
48
49
50 #
51 # Clean all config and object files...
52 #
53
54 clean:
55
56
57 #
58 # Dummy depend...
59 #
60
61 depend:
62
63
64 #
65 # Install all targets...
66 #
67
68 install: all install-data install-headers install-libs install-exec
69
70
71 #
72 # Install data files...
73 #
74
75 install-data:
76 $(INSTALL_DIR) -m 755 $(DATADIR)/banners
77 $(INSTALL_DIR) -m 755 $(DATADIR)/data
78 $(INSTALL_DIR) -m 755 $(DATADIR)/model
79 $(INSTALL_DIR) -m 755 $(DATADIR)/ppdc
80 for file in $(PPDCFILES); do \
81 $(INSTALL_DATA) $$file $(DATADIR)/ppdc; \
82 done
83 $(INSTALL_DIR) -m 755 $(DATADIR)/profiles
84
85
86 #
87 # Install programs...
88 #
89
90 install-exec:
91
92
93 #
94 # Install headers...
95 #
96
97 install-headers:
98
99
100 #
101 # Install libraries...
102 #
103
104 install-libs:
105
106
107 #
108 # Uninstall files...
109 #
110
111 uninstall:
112 for file in $(PPDCFILES); do \
113 $(RM) $(DATADIR)/ppdc/$$file; \
114 done
115 -$(RMDIR) $(DATADIR)/profiles
116 -$(RMDIR) $(DATADIR)/ppdc
117 -$(RMDIR) $(DATADIR)/model
118 -$(RMDIR) $(DATADIR)/data
119 -$(RMDIR) $(DATADIR)/banners
120 -$(RMDIR) $(DATADIR)