]> git.ipfire.org Git - thirdparty/cups.git/blob - templates/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / templates / Makefile
1 #
2 # "$Id: Makefile 5055 2006-02-02 18:25:38Z 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 = \
32 add-class.tmpl \
33 add-printer.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 class-jobs-header.tmpl \
44 class-modified.tmpl \
45 classes.tmpl \
46 classes-header.tmpl \
47 edit-config.tmpl \
48 error.tmpl \
49 error-op.tmpl \
50 header.tmpl \
51 help-header.tmpl \
52 job-cancel.tmpl \
53 job-hold.tmpl \
54 job-move.tmpl \
55 job-moved.tmpl \
56 job-release.tmpl \
57 job-restart.tmpl \
58 jobs.tmpl \
59 jobs-header.tmpl \
60 modify-class.tmpl \
61 modify-printer.tmpl \
62 option-boolean.tmpl \
63 option-conflict.tmpl \
64 option-header.tmpl \
65 option-pickmany.tmpl \
66 option-pickone.tmpl \
67 option-trailer.tmpl \
68 pager.tmpl \
69 printer-accept.tmpl \
70 printer-added.tmpl \
71 printer-configured.tmpl \
72 printer-confirm.tmpl \
73 printer-default.tmpl \
74 printer-deleted.tmpl \
75 printer-jobs-header.tmpl \
76 printer-modified.tmpl \
77 printer-purge.tmpl \
78 printer-reject.tmpl \
79 printer-start.tmpl \
80 printer-stop.tmpl \
81 printers.tmpl \
82 printers-header.tmpl \
83 restart.tmpl \
84 samba-export.tmpl \
85 samba-exported.tmpl \
86 search.tmpl \
87 set-printer-options-header.tmpl \
88 set-printer-options-trailer.tmpl \
89 test-page.tmpl \
90 trailer.tmpl \
91 users.tmpl
92
93
94 #
95 # Make everything...
96 #
97
98 all:
99
100
101 #
102 # Clean all config and object files...
103 #
104
105 clean:
106
107
108 #
109 # Install files...
110 #
111
112 install: all
113 $(INSTALL_DIR) $(DATADIR)/templates
114 for file in $(FILES); do \
115 $(INSTALL_DATA) $$file $(DATADIR)/templates; \
116 done
117
118
119 #
120 # End of "$Id: Makefile 5055 2006-02-02 18:25:38Z mike $".
121 #