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