]> git.ipfire.org Git - thirdparty/cups.git/blame - ppd/Makefile
Remove svn:keywords since they cause svn_load_dirs.pl to complain about every file.
[thirdparty/cups.git] / ppd / Makefile
CommitLineData
ef416fc2 1#
c07d5b2d 2# "$Id: Makefile 177 2006-06-21 00:20:03Z jlovell $"
ef416fc2 3#
4# PPD file makefile for the Common UNIX Printing System (CUPS).
5#
6# Copyright 1993-2006 by Easy Software Products.
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# PPD files...
29#
30
31FILES = deskjet.ppd deskjet2.ppd dymo.ppd epson9.ppd epson24.ppd \
32 laserjet.ppd okidata9.ppd okidat24.ppd stcolor.ppd \
33 stcolor2.ppd stphoto.ppd stphoto2.ppd zebra.ppd zebraep1.ppd \
34 zebraep2.ppd
35
36
37#
38# Make everything...
39#
40
41all:
42
43
44#
45# Clean all config and object files...
46#
47
48clean:
49
50
757d2cad 51#
52# Dummy depend...
53#
54
55depend:
56
57
ef416fc2 58#
59# Install files...
60#
61
fa73b229 62install: all
bd7854cb 63 $(INSTALL_DIR) -m 755 $(DATADIR)/model
ef416fc2 64 for file in $(FILES); do \
65 $(INSTALL_DATA) $$file $(DATADIR)/model; \
66 done
67
68
69#
757d2cad 70# Uninstall files...
71#
72
73uninstall:
74 for file in $(FILES); do \
75 $(RM) $(DATADIR)/model/$$file; \
76 done
77 -$(RMDIR) $(DATADIR)/model
78 -$(RMDIR) $(DATADIR)
79
80
81#
c07d5b2d 82# End of "$Id: Makefile 177 2006-06-21 00:20:03Z jlovell $".
ef416fc2 83#