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