]> git.ipfire.org Git - thirdparty/cups.git/blame - fonts/Makefile
Merge changes from CUPS trunk, r7566.
[thirdparty/cups.git] / fonts / Makefile
CommitLineData
ef416fc2 1#
bc44d920 2# "$Id: Makefile 6649 2007-07-11 21:46:42Z 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
ef416fc2 40#
41# Clean all config and object files...
42#
43
44clean:
45
46
757d2cad 47#
48# Dummy depend target...
49#
50
51depend:
52
53
ef416fc2 54#
50fe7201 55# Install all targets...
ef416fc2 56#
57
50fe7201
MS
58install: all install-data install-headers install-libs install-exec
59
60
61#
62# Install data files...
63#
64
65install-data:
bd7854cb 66 $(INSTALL_DIR) -m 755 $(DATADIR)/fonts
ef416fc2 67 for file in $(FONTS); do \
68 $(INSTALL_DATA) $$file $(DATADIR)/fonts; \
69 done
70
71
50fe7201
MS
72#
73# Install programs...
74#
75
76install-exec:
77
78
79#
80# Install headers...
81#
82
83install-headers:
84
85
86#
87# Install libraries...
88#
89
90install-libs:
91
92
ef416fc2 93#
757d2cad 94# Uninstall files...
95#
96
97uninstall:
98 for file in $(FONTS); do \
99 $(RM) $(DATADIR)/fonts/$$file; \
100 done
101 $(RMDIR) $(DATADIR)/fonts
102
103
104#
bc44d920 105# End of "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $".
ef416fc2 106#