]> git.ipfire.org Git - thirdparty/cups.git/blame - doc/Makefile
To prepare to load cups into easysw/current, perform 4 renames.
[thirdparty/cups.git] / doc / Makefile
CommitLineData
ef416fc2 1#
2# "$Id: Makefile 4918 2006-01-12 05:14:40Z mike $"
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 \
47 images/draft.gif \
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 \
60 images/printer-idle.gif \
61 images/printer-processing.gif \
62 images/printer-stopped.gif \
63 images/print-test-page.gif \
64 images/publish-printer.gif \
65 images/reject-jobs.gif \
66 images/release-job.gif \
67 images/restart-job.gif \
68 images/save-changes.gif \
69 images/search.gif \
70 images/set-allowed-users.gif \
71 images/set-as-default.gif \
72 images/set-printer-options.gif \
73 images/show-active.gif \
74 images/show-completed.gif \
75 images/start-class.gif \
76 images/start-printer.gif \
77 images/stop-class.gif \
78 images/stop-printer.gif \
79 images/tab-left.gif \
80 images/tab-right.gif \
81 images/top-left.gif \
82 images/top-middle.gif \
83 images/top-right.gif \
84 images/unpublish-printer.gif \
85 images/use-default-config.gif \
86 images/view-access-log.gif \
87 images/view-error-log.gif \
88 images/view-page-log.gif
89HELPFILES = \
90 help/access_log-reference.html \
91 help/api-array.html \
92 help/api-cups.html \
93 help/api-filedir.html \
94 help/api-filter.html \
95 help/api-httpipp.html \
96 help/api-ppd.html \
97 help/classes-conf-reference.html \
98 help/client-conf-reference.html \
99 help/cupsd-conf-reference.html \
100 help/error_log-reference.html \
101 help/page_log-reference.html \
102 help/printers-conf-reference.html \
103 help/subscriptions-conf-reference.html \
104 help/man-accept.html \
105 help/man-backend.html \
106 help/man-cupsaddsmb.html \
107 help/man-cups-config.html \
108 help/man-cupsd.html \
109 help/man-cupsenable.html \
110 help/man-cups-lpd.html \
111 help/man-cups-polld.html \
112 help/man-cupstestppd.html \
113 help/man-filter.html \
114 help/man-lpadmin.html \
115 help/man-lpc.html \
116 help/man-lp.html \
117 help/man-lpinfo.html \
118 help/man-lpmove.html \
119 help/man-lpoptions.html \
120 help/man-lppasswd.html \
121 help/man-lpq.html \
122 help/man-lpr.html \
123 help/man-lprm.html \
124 help/man-lpstat.html \
125 help/network.html \
126 help/overview.html \
127 help/spec-ppd.html \
128 help/standard.html \
129 help/whatsnew.html
130
131
132#
133# Make all documents...
134#
135
136all:
137
138
139#
140# Remove all generated files...
141#
142
143clean:
144
145
146#
147# Install all documentation files...
148#
149
150install:
151 $(INSTALL_DIR) $(DOCDIR)
152 for file in $(WEBPAGES); do \
153 $(INSTALL_MAN) $$file $(DOCDIR); \
154 done
155 $(INSTALL_DIR) $(DOCDIR)/help
156 for file in $(HELPFILES); do \
157 $(INSTALL_MAN) $$file $(DOCDIR)/help; \
158 done
159 $(INSTALL_DIR) $(DOCDIR)/images
160 for file in $(WEBIMAGES); do \
161 $(INSTALL_MAN) $$file $(DOCDIR)/images; \
162 done
163
164
165#
166# End of Makefile.
167#