]> git.ipfire.org Git - thirdparty/cups.git/blob - fonts/Makefile
Merge changes from CUPS 1.4svn-r7994.
[thirdparty/cups.git] / fonts / Makefile
1 #
2 # "$Id: Makefile 7871 2008-08-27 21:12:43Z 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 = \
23 Monospace \
24 Monospace-Bold \
25 Monospace-BoldOblique \
26 Monospace-Oblique
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 target...
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)/fonts
77 for file in $(FONTS); do \
78 $(INSTALL_DATA) $$file $(DATADIR)/fonts; \
79 done
80
81
82 #
83 # Install programs...
84 #
85
86 install-exec:
87
88
89 #
90 # Install headers...
91 #
92
93 install-headers:
94
95
96 #
97 # Install libraries...
98 #
99
100 install-libs:
101
102
103 #
104 # Uninstall files...
105 #
106
107 uninstall:
108 for file in $(FONTS); do \
109 $(RM) $(DATADIR)/fonts/$$file; \
110 done
111 $(RMDIR) $(DATADIR)/fonts
112
113
114 #
115 # End of "$Id: Makefile 7871 2008-08-27 21:12:43Z mike $".
116 #