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