]> git.ipfire.org Git - thirdparty/cups.git/blob - templates/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / templates / Makefile
1 #
2 # "$Id: Makefile 4881 2005-12-15 22:03:40Z mike $"
3 #
4 # Template makefile for the Common UNIX Printing System (CUPS).
5 #
6 # Copyright 1993-2005 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
25 include ../Makedefs
26
27 #
28 # Template files...
29 #
30
31 FILES = add-class.tmpl \
32 add-printer.tmpl \
33 admin-op.tmpl \
34 admin.tmpl \
35 choose-device.tmpl \
36 choose-make.tmpl \
37 choose-model.tmpl \
38 choose-serial.tmpl \
39 choose-uri.tmpl \
40 class-added.tmpl \
41 class-confirm.tmpl \
42 class-deleted.tmpl \
43 classes.tmpl \
44 class-modified.tmpl \
45 edit-config.tmpl \
46 error.tmpl \
47 header.tmpl \
48 help-header.tmpl \
49 job-cancel.tmpl \
50 job-hold.tmpl \
51 job-op.tmpl \
52 job-release.tmpl \
53 job-restart.tmpl \
54 jobs.tmpl \
55 modify-class.tmpl \
56 modify-printer.tmpl \
57 option-boolean.tmpl \
58 option-conflict.tmpl \
59 option-header.tmpl \
60 option-pickmany.tmpl \
61 option-pickone.tmpl \
62 option-trailer.tmpl \
63 printer-accept.tmpl \
64 printer-added.tmpl \
65 printer-configured.tmpl \
66 printer-confirm.tmpl \
67 printer-default.tmpl \
68 printer-deleted.tmpl \
69 printer-modified.tmpl \
70 printer-purge.tmpl \
71 printer-reject.tmpl \
72 printer-start.tmpl \
73 printers.tmpl \
74 printer-stop.tmpl \
75 restart.tmpl \
76 set-printer-options-header.tmpl \
77 set-printer-options-trailer.tmpl \
78 test-page.tmpl \
79 trailer.tmpl \
80 users.tmpl
81
82
83 #
84 # Make everything...
85 #
86
87 all:
88
89
90 #
91 # Clean all config and object files...
92 #
93
94 clean:
95
96
97 #
98 # Install files...
99 #
100
101 install:
102 $(INSTALL_DIR) $(DATADIR)/templates
103 for file in $(FILES); do \
104 $(INSTALL_DATA) $$file $(DATADIR)/templates; \
105 done
106
107
108 #
109 # End of "$Id: Makefile 4881 2005-12-15 22:03:40Z mike $".
110 #