]> git.ipfire.org Git - thirdparty/cups.git/blame_incremental - fonts/Makefile
Merge changes from CUPS 1.4svn-r7874.
[thirdparty/cups.git] / fonts / Makefile
... / ...
CommitLineData
1#
2# "$Id: Makefile 7558 2008-05-12 23:46:44Z 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
16include ../Makedefs
17
18#
19# Font files...
20#
21
22FONTS = Courier Courier-Bold Courier-BoldOblique Courier-Oblique \
23 Symbol
24
25
26#
27# Make everything...
28#
29
30all:
31
32
33#
34# Make library targets...
35#
36
37libs:
38
39
40#
41# Make unit tests...
42#
43
44unittests:
45
46
47#
48# Clean all config and object files...
49#
50
51clean:
52
53
54#
55# Dummy depend target...
56#
57
58depend:
59
60
61#
62# Install all targets...
63#
64
65install: all install-data install-headers install-libs install-exec
66
67
68#
69# Install data files...
70#
71
72install-data:
73 $(INSTALL_DIR) -m 755 $(DATADIR)/fonts
74 for file in $(FONTS); do \
75 $(INSTALL_DATA) $$file $(DATADIR)/fonts; \
76 done
77
78
79#
80# Install programs...
81#
82
83install-exec:
84
85
86#
87# Install headers...
88#
89
90install-headers:
91
92
93#
94# Install libraries...
95#
96
97install-libs:
98
99
100#
101# Uninstall files...
102#
103
104uninstall:
105 for file in $(FONTS); do \
106 $(RM) $(DATADIR)/fonts/$$file; \
107 done
108 $(RMDIR) $(DATADIR)/fonts
109
110
111#
112# End of "$Id: Makefile 7558 2008-05-12 23:46:44Z mike $".
113#