]> git.ipfire.org Git - thirdparty/cups.git/blame - fonts/Makefile
Merge changes from CUPS 1.4svn-r7874.
[thirdparty/cups.git] / fonts / Makefile
CommitLineData
ef416fc2 1#
75bd9771 2# "$Id: Makefile 7558 2008-05-12 23:46:44Z mike $"
ef416fc2 3#
4# Fonts makefile for the Common UNIX Printing System (CUPS).
5#
50fe7201 6# Copyright 2007-2008 by Apple Inc.
bd7854cb 7# Copyright 1993-2006 by Easy Software Products.
ef416fc2 8#
9# These coded instructions, statements, and computer programs are the
bc44d920 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/".
ef416fc2 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
c9fc04c6
MS
33#
34# Make library targets...
35#
36
37libs:
38
39
5f64df29
MS
40#
41# Make unit tests...
42#
43
44unittests:
45
46
ef416fc2 47#
48# Clean all config and object files...
49#
50
51clean:
52
53
757d2cad 54#
55# Dummy depend target...
56#
57
58depend:
59
60
ef416fc2 61#
50fe7201 62# Install all targets...
ef416fc2 63#
64
50fe7201
MS
65install: all install-data install-headers install-libs install-exec
66
67
68#
69# Install data files...
70#
71
72install-data:
bd7854cb 73 $(INSTALL_DIR) -m 755 $(DATADIR)/fonts
ef416fc2 74 for file in $(FONTS); do \
75 $(INSTALL_DATA) $$file $(DATADIR)/fonts; \
76 done
77
78
50fe7201
MS
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
ef416fc2 100#
757d2cad 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#
75bd9771 112# End of "$Id: Makefile 7558 2008-05-12 23:46:44Z mike $".
ef416fc2 113#