]> git.ipfire.org Git - thirdparty/cups.git/blame - fonts/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / fonts / Makefile
CommitLineData
ef416fc2 1#
f7faf1f5 2# "$Id: Makefile 5229 2006-03-05 16:48:12Z mike $"
ef416fc2 3#
4# Fonts makefile for the Common UNIX Printing System (CUPS).
5#
bd7854cb 6# Copyright 1993-2006 by Easy Software Products.
ef416fc2 7#
8# These coded instructions, statements, and computer programs are the
9# property of Easy Software Products and are protected by Federal
10# copyright law. Distribution and use rights are outlined in the file
11# "LICENSE.txt" which should have been included with this file. If this
12# file is missing or damaged please contact Easy Software Products
13# at:
14#
15# Attn: CUPS Licensing Information
16# Easy Software Products
17# 44141 Airport View Drive, Suite 204
18# Hollywood, Maryland 20636 USA
19#
20# Voice: (301) 373-9600
21# EMail: cups-info@cups.org
22# WWW: http://www.cups.org
23#
24
25include ../Makedefs
26
27#
28# Font files...
29#
30
31FONTS = Courier Courier-Bold Courier-BoldOblique Courier-Oblique \
32 Symbol
33
34
35#
36# Make everything...
37#
38
39all:
40
41
42#
43# Clean all config and object files...
44#
45
46clean:
47
48
757d2cad 49#
50# Dummy depend target...
51#
52
53depend:
54
55
ef416fc2 56#
57# Install files...
58#
59
fa73b229 60install: all
bd7854cb 61 $(INSTALL_DIR) -m 755 $(DATADIR)/fonts
ef416fc2 62 for file in $(FONTS); do \
63 $(INSTALL_DATA) $$file $(DATADIR)/fonts; \
64 done
65
66
67#
757d2cad 68# Uninstall files...
69#
70
71uninstall:
72 for file in $(FONTS); do \
73 $(RM) $(DATADIR)/fonts/$$file; \
74 done
75 $(RMDIR) $(DATADIR)/fonts
76
77
78#
f7faf1f5 79# End of "$Id: Makefile 5229 2006-03-05 16:48:12Z mike $".
ef416fc2 80#