]> git.ipfire.org Git - thirdparty/cups.git/blame - templates/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / templates / Makefile
CommitLineData
ef416fc2 1#
bd7854cb 2# "$Id: Makefile 5110 2006-02-15 21:42:46Z mike $"
ef416fc2 3#
4# Template makefile for the Common UNIX Printing System (CUPS).
5#
bd7854cb 6# Copyright 1993-2006 by Easy Software Products.
ef416fc2 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
bd7854cb 31LANGUAGES = ja
fa73b229 32FILES = \
33 add-class.tmpl \
ef416fc2 34 add-printer.tmpl \
ef416fc2 35 admin.tmpl \
36 choose-device.tmpl \
37 choose-make.tmpl \
38 choose-model.tmpl \
39 choose-serial.tmpl \
40 choose-uri.tmpl \
41 class-added.tmpl \
42 class-confirm.tmpl \
43 class-deleted.tmpl \
fa73b229 44 class-jobs-header.tmpl \
ef416fc2 45 class-modified.tmpl \
fa73b229 46 classes.tmpl \
47 classes-header.tmpl \
ef416fc2 48 edit-config.tmpl \
49 error.tmpl \
fa73b229 50 error-op.tmpl \
ef416fc2 51 header.tmpl \
52 help-header.tmpl \
53 job-cancel.tmpl \
54 job-hold.tmpl \
fa73b229 55 job-move.tmpl \
56 job-moved.tmpl \
ef416fc2 57 job-release.tmpl \
58 job-restart.tmpl \
59 jobs.tmpl \
fa73b229 60 jobs-header.tmpl \
ef416fc2 61 modify-class.tmpl \
62 modify-printer.tmpl \
63 option-boolean.tmpl \
64 option-conflict.tmpl \
65 option-header.tmpl \
66 option-pickmany.tmpl \
67 option-pickone.tmpl \
68 option-trailer.tmpl \
fa73b229 69 pager.tmpl \
ef416fc2 70 printer-accept.tmpl \
71 printer-added.tmpl \
72 printer-configured.tmpl \
73 printer-confirm.tmpl \
74 printer-default.tmpl \
75 printer-deleted.tmpl \
fa73b229 76 printer-jobs-header.tmpl \
ef416fc2 77 printer-modified.tmpl \
78 printer-purge.tmpl \
79 printer-reject.tmpl \
80 printer-start.tmpl \
ef416fc2 81 printer-stop.tmpl \
fa73b229 82 printers.tmpl \
83 printers-header.tmpl \
ef416fc2 84 restart.tmpl \
4400e98d 85 samba-export.tmpl \
86 samba-exported.tmpl \
fa73b229 87 search.tmpl \
ef416fc2 88 set-printer-options-header.tmpl \
89 set-printer-options-trailer.tmpl \
90 test-page.tmpl \
91 trailer.tmpl \
92 users.tmpl
93
94
95#
96# Make everything...
97#
98
99all:
100
101
102#
103# Clean all config and object files...
104#
105
106clean:
107
108
109#
110# Install files...
111#
112
fa73b229 113install: all
bd7854cb 114 $(INSTALL_DIR) -m 755 $(DATADIR)/templates
ef416fc2 115 for file in $(FILES); do \
116 $(INSTALL_DATA) $$file $(DATADIR)/templates; \
117 done
bd7854cb 118 for lang in $(LANGUAGES); do \
119 $(INSTALL_DIR) -m 755 $(DATADIR)/templates/$$lang; \
120 for file in $(FILES); do \
121 if test -e $$lang/$$file; then \
122 $(INSTALL_DATA) $$lang/$$file $(DATADIR)/templates/$$lang; \
123 fi \
124 done \
125 done
ef416fc2 126
127
128#
bd7854cb 129# End of "$Id: Makefile 5110 2006-02-15 21:42:46Z mike $".
ef416fc2 130#