]> git.ipfire.org Git - thirdparty/cups.git/blob - standards/Makefile
6e39c798b6528a1ac13303542e86200204928b39
[thirdparty/cups.git] / standards / Makefile
1 #
2 # "$Id: Makefile 7558 2008-05-12 23:46:44Z mike $"
3 #
4 # Standards makefile for the Common UNIX Printing System (CUPS).
5 #
6 # Copyright 2007-2008 by Apple Inc.
7 # Copyright 2006 by Easy Software Products.
8 #
9 # These coded instructions, statements, and computer programs are the
10 # property of Apple Inc. and are protected by Federal copyright
11 # law. Distribution and use rights are outlined in the file "LICENSE.txt"
12 # which should have been included with this file. If this file is
13 # file is missing or damaged, see the license at "http://www.cups.org/".
14 #
15
16 include ../Makedefs
17
18
19 #
20 # Standards...
21 #
22
23 RFCS = \
24 rfc1179.txt \
25 rfc1321.txt \
26 rfc2222.txt \
27 rfc2246.txt \
28 rfc2487.txt \
29 rfc2554.txt \
30 rfc2567.txt \
31 rfc2568.txt \
32 rfc2569.txt \
33 rfc2595.txt \
34 rfc2616.txt \
35 rfc2617.txt \
36 rfc2712.txt \
37 rfc2817.txt \
38 rfc2818.txt \
39 rfc2821.txt \
40 rfc2822.txt \
41 rfc2910.txt \
42 rfc2911.txt \
43 rfc2965.txt \
44 rfc3196.txt \
45 rfc3239.txt \
46 rfc3380.txt \
47 rfc3381.txt \
48 rfc3382.txt \
49 rfc3391.txt \
50 rfc3510.txt \
51 rfc3712.txt \
52 rfc3986.txt \
53 rfc3995.txt \
54 rfc3996.txt \
55 rfc3997.txt \
56 rfc3998.txt
57
58 .SUFFIXES: .html .txt
59 .txt.html: rfctohtml
60 echo Converting $< to HTML...
61 ./rfctohtml $< ../doc/help/$@
62
63
64 #
65 # Make everything...
66 #
67
68 all: rfctohtml $(RFCS:.txt=.html)
69
70
71 #
72 # Make library targets...
73 #
74
75 libs:
76
77
78 #
79 # Clean all config and object files...
80 #
81
82 clean:
83 $(RM) rfctohtml rfctohtml.o
84 $(RM) $(RFCS:.txt=.html)
85
86
87 #
88 # Dummy depend target...
89 #
90
91 depend:
92
93
94 #
95 # Install all targets...
96 #
97
98 install: all install-data install-headers install-libs install-exec
99
100
101 #
102 # Install data files...
103 #
104
105 install-data:
106
107
108 #
109 # Install programs...
110 #
111
112 install-exec:
113
114
115 #
116 # Install headers...
117 #
118
119 install-headers:
120
121
122 #
123 # Install libraries...
124 #
125
126 install-libs:
127
128
129 #
130 # Uninstall files...
131 #
132
133 uninstall:
134
135
136 #
137 # rfctohtml - make html versions of RFCs...
138 #
139
140 rfctohtml: rfctohtml.o ../cups/libcups.a
141 $(CC) $(ARCHFLAGS) $(LDFLAGS) -o $@ rfctohtml.o ../cups/libcups.a \
142 $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
143
144
145 #
146 # End of "$Id: Makefile 7558 2008-05-12 23:46:44Z mike $".
147 #