]> git.ipfire.org Git - thirdparty/cups.git/blame - doc/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / doc / Makefile
CommitLineData
ef416fc2 1#
a4d04587 2# "$Id: Makefile 5020 2006-01-28 13:36:15Z mike $"
ef416fc2 3#
4# Documentation 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# Document files...
29#
30
31WEBPAGES = cups.css cupsdoc.css index.html robots.txt
32WEBIMAGES = \
a4d04587 33 favicon.ico \
ef416fc2 34 images/accept-jobs.gif \
35 images/add-class.gif \
36 images/add-printer.gif \
37 images/add-this-printer.gif \
38 images/bottom-left.gif \
39 images/bottom-right.gif \
40 images/cancel.gif \
41 images/cancel-all-jobs.gif \
42 images/cancel-job.gif \
43 images/change-settings.gif \
44 images/classes.gif \
45 images/continue.gif \
46 images/delete-class.gif \
47 images/delete-printer.gif \
ef416fc2 48 images/edit-configuration-file.gif \
49 images/esp-logo.gif \
50 images/happy.gif \
51 images/help.gif \
52 images/hold-job.gif \
53 images/logo.gif \
54 images/manage-classes.gif \
55 images/manage-jobs.gif \
56 images/manage-printers.gif \
57 images/manage-server.gif \
58 images/modify-class.gif \
59 images/modify-printer.gif \
fa73b229 60 images/move-job.gif \
61 images/move-jobs.gif \
ef416fc2 62 images/printer-idle.gif \
63 images/printer-processing.gif \
64 images/printer-stopped.gif \
65 images/print-test-page.gif \
66 images/publish-printer.gif \
67 images/reject-jobs.gif \
68 images/release-job.gif \
69 images/restart-job.gif \
70 images/save-changes.gif \
71 images/search.gif \
72 images/set-allowed-users.gif \
73 images/set-as-default.gif \
74 images/set-printer-options.gif \
75 images/show-active.gif \
fa73b229 76 images/show-all.gif \
ef416fc2 77 images/show-completed.gif \
fa73b229 78 images/show-next.gif \
79 images/show-previous.gif \
80 images/sort-ascending.gif \
81 images/sort-descending.gif \
ef416fc2 82 images/start-class.gif \
83 images/start-printer.gif \
84 images/stop-class.gif \
85 images/stop-printer.gif \
86 images/tab-left.gif \
87 images/tab-right.gif \
88 images/top-left.gif \
89 images/top-middle.gif \
90 images/top-right.gif \
91 images/unpublish-printer.gif \
92 images/use-default-config.gif \
93 images/view-access-log.gif \
94 images/view-error-log.gif \
95 images/view-page-log.gif
96HELPFILES = \
97 help/access_log-reference.html \
98 help/api-array.html \
99 help/api-cups.html \
100 help/api-filedir.html \
101 help/api-filter.html \
102 help/api-httpipp.html \
103 help/api-ppd.html \
104 help/classes-conf-reference.html \
105 help/client-conf-reference.html \
106 help/cupsd-conf-reference.html \
107 help/error_log-reference.html \
108 help/page_log-reference.html \
109 help/printers-conf-reference.html \
110 help/subscriptions-conf-reference.html \
111 help/man-accept.html \
112 help/man-backend.html \
113 help/man-cupsaddsmb.html \
114 help/man-cups-config.html \
115 help/man-cupsd.html \
116 help/man-cupsenable.html \
117 help/man-cups-lpd.html \
118 help/man-cups-polld.html \
119 help/man-cupstestppd.html \
120 help/man-filter.html \
121 help/man-lpadmin.html \
122 help/man-lpc.html \
123 help/man-lp.html \
124 help/man-lpinfo.html \
125 help/man-lpmove.html \
126 help/man-lpoptions.html \
127 help/man-lppasswd.html \
128 help/man-lpq.html \
129 help/man-lpr.html \
130 help/man-lprm.html \
131 help/man-lpstat.html \
132 help/network.html \
133 help/overview.html \
fa73b229 134 help/spec-ipp.html \
ef416fc2 135 help/spec-ppd.html \
136 help/standard.html \
137 help/whatsnew.html
138
139
140#
141# Make all documents...
142#
143
144all:
145
146
147#
148# Remove all generated files...
149#
150
151clean:
152
153
154#
155# Install all documentation files...
156#
157
fa73b229 158install: all
ef416fc2 159 $(INSTALL_DIR) $(DOCDIR)
160 for file in $(WEBPAGES); do \
161 $(INSTALL_MAN) $$file $(DOCDIR); \
162 done
163 $(INSTALL_DIR) $(DOCDIR)/help
164 for file in $(HELPFILES); do \
165 $(INSTALL_MAN) $$file $(DOCDIR)/help; \
166 done
167 $(INSTALL_DIR) $(DOCDIR)/images
168 for file in $(WEBIMAGES); do \
169 $(INSTALL_MAN) $$file $(DOCDIR)/images; \
170 done
171
172
173#
174# End of Makefile.
175#