]> git.ipfire.org Git - thirdparty/cups.git/blame - ppd/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / ppd / Makefile
CommitLineData
ef416fc2 1#
bc44d920 2# "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $"
ef416fc2 3#
4# PPD file makefile for the Common UNIX Printing System (CUPS).
5#
bc44d920 6# Copyright 2007 by Apple Inc.
ef416fc2 7# Copyright 1993-2006 by Easy Software Products.
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# PPD files...
20#
21
bc44d920 22FILES = deskjet.ppd dymo.ppd epson9.ppd epson24.ppd \
ef416fc2 23 laserjet.ppd okidata9.ppd okidat24.ppd stcolor.ppd \
24 stcolor2.ppd stphoto.ppd stphoto2.ppd zebra.ppd zebraep1.ppd \
25 zebraep2.ppd
26
27
28#
29# Make everything...
30#
31
32all:
33
34
35#
36# Clean all config and object files...
37#
38
39clean:
40
41
757d2cad 42#
43# Dummy depend...
44#
45
46depend:
47
48
ef416fc2 49#
50# Install files...
51#
52
fa73b229 53install: all
bd7854cb 54 $(INSTALL_DIR) -m 755 $(DATADIR)/model
ef416fc2 55 for file in $(FILES); do \
56 $(INSTALL_DATA) $$file $(DATADIR)/model; \
57 done
58
59
60#
757d2cad 61# Uninstall files...
62#
63
64uninstall:
65 for file in $(FILES); do \
66 $(RM) $(DATADIR)/model/$$file; \
67 done
68 -$(RMDIR) $(DATADIR)/model
69 -$(RMDIR) $(DATADIR)
70
71
72#
bc44d920 73# Update PPD files...
74#
75
76ppds:
77 ppdc -d . -l `echo $(LANGUAGES) | tr ' ' ','` sample.drv
78
79
80#
81# End of "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $".
ef416fc2 82#