]> git.ipfire.org Git - thirdparty/cups.git/blame - fonts/Makefile
Merge changes from CUPS 1.5.1-r9875.
[thirdparty/cups.git] / fonts / Makefile
CommitLineData
ef416fc2 1#
b19ccc9e 2# "$Id: Makefile 7871 2008-08-27 21:12:43Z mike $"
ef416fc2 3#
321d8d57 4# Fonts makefile for CUPS.
ef416fc2 5#
321d8d57 6# Copyright 2007-2011 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
1f6f3dbc
MS
22FONTS = \
23 Monospace \
24 Monospace-Bold \
25 Monospace-BoldOblique \
26 Monospace-Oblique
ef416fc2 27
28
29#
30# Make everything...
31#
32
33all:
34
35
c9fc04c6
MS
36#
37# Make library targets...
38#
39
40libs:
41
42
5f64df29
MS
43#
44# Make unit tests...
45#
46
47unittests:
48
49
ef416fc2 50#
51# Clean all config and object files...
52#
53
54clean:
55
56
757d2cad 57#
58# Dummy depend target...
59#
60
61depend:
62
63
ef416fc2 64#
50fe7201 65# Install all targets...
ef416fc2 66#
67
50fe7201
MS
68install: all install-data install-headers install-libs install-exec
69
70
71#
72# Install data files...
73#
74
75install-data:
bd7854cb 76 $(INSTALL_DIR) -m 755 $(DATADIR)/fonts
e6013cfa
MS
77 if test "x$(BANNERTOPS)" != x -o "x$(TEXTTOPS)" != x; then \
78 for file in $(FONTS); do \
79 $(INSTALL_DATA) $$file $(DATADIR)/fonts; \
80 done \
81 fi
ef416fc2 82
83
50fe7201
MS
84#
85# Install programs...
86#
87
88install-exec:
89
90
91#
92# Install headers...
93#
94
95install-headers:
96
97
98#
99# Install libraries...
100#
101
102install-libs:
103
104
ef416fc2 105#
757d2cad 106# Uninstall files...
107#
108
109uninstall:
110 for file in $(FONTS); do \
111 $(RM) $(DATADIR)/fonts/$$file; \
112 done
113 $(RMDIR) $(DATADIR)/fonts
114
115
116#
b19ccc9e 117# End of "$Id: Makefile 7871 2008-08-27 21:12:43Z mike $".
ef416fc2 118#