]> git.ipfire.org Git - thirdparty/cups.git/blob - fonts/Makefile
<rdar://problem/5792631> dependency cycle in cups-144 / PrintingCore-250 / Applicatio...
[thirdparty/cups.git] / fonts / Makefile
1 #
2 # "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $"
3 #
4 # Fonts makefile for the Common UNIX Printing System (CUPS).
5 #
6 # Copyright 2007-2008 by Apple Inc.
7 # Copyright 1993-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
16 include ../Makedefs
17
18 #
19 # Font files...
20 #
21
22 FONTS = Courier Courier-Bold Courier-BoldOblique Courier-Oblique \
23 Symbol
24
25
26 #
27 # Make everything...
28 #
29
30 all:
31
32
33 #
34 # Clean all config and object files...
35 #
36
37 clean:
38
39
40 #
41 # Dummy depend target...
42 #
43
44 depend:
45
46
47 #
48 # Install all targets...
49 #
50
51 install: all install-data install-headers install-libs install-exec
52
53
54 #
55 # Install data files...
56 #
57
58 install-data:
59 $(INSTALL_DIR) -m 755 $(DATADIR)/fonts
60 for file in $(FONTS); do \
61 $(INSTALL_DATA) $$file $(DATADIR)/fonts; \
62 done
63
64
65 #
66 # Install programs...
67 #
68
69 install-exec:
70
71
72 #
73 # Install headers...
74 #
75
76 install-headers:
77
78
79 #
80 # Install libraries...
81 #
82
83 install-libs:
84
85
86 #
87 # Uninstall files...
88 #
89
90 uninstall:
91 for file in $(FONTS); do \
92 $(RM) $(DATADIR)/fonts/$$file; \
93 done
94 $(RMDIR) $(DATADIR)/fonts
95
96
97 #
98 # End of "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $".
99 #