]> git.ipfire.org Git - thirdparty/cups.git/blob - ppd/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / ppd / Makefile
1 #
2 # "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $"
3 #
4 # PPD file makefile for the Common UNIX Printing System (CUPS).
5 #
6 # Copyright 2007 by Apple Inc.
7 # Copyright 1993-2006 by Easy Software Products.
8 #
9 # These coded instructions, statements, and computer programs are the
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/".
14 #
15
16 include ../Makedefs
17
18 #
19 # PPD files...
20 #
21
22 FILES = deskjet.ppd dymo.ppd epson9.ppd epson24.ppd \
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
32 all:
33
34
35 #
36 # Clean all config and object files...
37 #
38
39 clean:
40
41
42 #
43 # Dummy depend...
44 #
45
46 depend:
47
48
49 #
50 # Install files...
51 #
52
53 install: all
54 $(INSTALL_DIR) -m 755 $(DATADIR)/model
55 for file in $(FILES); do \
56 $(INSTALL_DATA) $$file $(DATADIR)/model; \
57 done
58
59
60 #
61 # Uninstall files...
62 #
63
64 uninstall:
65 for file in $(FILES); do \
66 $(RM) $(DATADIR)/model/$$file; \
67 done
68 -$(RMDIR) $(DATADIR)/model
69 -$(RMDIR) $(DATADIR)
70
71
72 #
73 # Update PPD files...
74 #
75
76 ppds:
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 $".
82 #