]> git.ipfire.org Git - thirdparty/cups.git/blame - templates/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / templates / Makefile
CommitLineData
ef416fc2 1#
4400e98d 2# "$Id: Makefile 5055 2006-02-02 18:25:38Z mike $"
ef416fc2 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
25include ../Makedefs
26
27#
28# Template files...
29#
30
fa73b229 31FILES = \
32 add-class.tmpl \
ef416fc2 33 add-printer.tmpl \
ef416fc2 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 \
fa73b229 43 class-jobs-header.tmpl \
ef416fc2 44 class-modified.tmpl \
fa73b229 45 classes.tmpl \
46 classes-header.tmpl \
ef416fc2 47 edit-config.tmpl \
48 error.tmpl \
fa73b229 49 error-op.tmpl \
ef416fc2 50 header.tmpl \
51 help-header.tmpl \
52 job-cancel.tmpl \
53 job-hold.tmpl \
fa73b229 54 job-move.tmpl \
55 job-moved.tmpl \
ef416fc2 56 job-release.tmpl \
57 job-restart.tmpl \
58 jobs.tmpl \
fa73b229 59 jobs-header.tmpl \
ef416fc2 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 \
fa73b229 68 pager.tmpl \
ef416fc2 69 printer-accept.tmpl \
70 printer-added.tmpl \
71 printer-configured.tmpl \
72 printer-confirm.tmpl \
73 printer-default.tmpl \
74 printer-deleted.tmpl \
fa73b229 75 printer-jobs-header.tmpl \
ef416fc2 76 printer-modified.tmpl \
77 printer-purge.tmpl \
78 printer-reject.tmpl \
79 printer-start.tmpl \
ef416fc2 80 printer-stop.tmpl \
fa73b229 81 printers.tmpl \
82 printers-header.tmpl \
ef416fc2 83 restart.tmpl \
4400e98d 84 samba-export.tmpl \
85 samba-exported.tmpl \
fa73b229 86 search.tmpl \
ef416fc2 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
98all:
99
100
101#
102# Clean all config and object files...
103#
104
105clean:
106
107
108#
109# Install files...
110#
111
fa73b229 112install: all
ef416fc2 113 $(INSTALL_DIR) $(DATADIR)/templates
114 for file in $(FILES); do \
115 $(INSTALL_DATA) $$file $(DATADIR)/templates; \
116 done
117
118
119#
4400e98d 120# End of "$Id: Makefile 5055 2006-02-02 18:25:38Z mike $".
ef416fc2 121#