]> git.ipfire.org Git - thirdparty/cups.git/blob - standards/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / standards / Makefile
1 #
2 # "$Id: Makefile 5229 2006-03-05 16:48:12Z mike $"
3 #
4 # Standards makefile for the Common UNIX Printing System (CUPS).
5 #
6 # Copyright 2006 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 #
29 # Standards...
30 #
31
32 RFCS = \
33 rfc1179.txt \
34 rfc1321.txt \
35 rfc2222.txt \
36 rfc2246.txt \
37 rfc2487.txt \
38 rfc2554.txt \
39 rfc2567.txt \
40 rfc2568.txt \
41 rfc2569.txt \
42 rfc2595.txt \
43 rfc2616.txt \
44 rfc2617.txt \
45 rfc2712.txt \
46 rfc2817.txt \
47 rfc2818.txt \
48 rfc2821.txt \
49 rfc2822.txt \
50 rfc2910.txt \
51 rfc2911.txt \
52 rfc2965.txt \
53 rfc3196.txt \
54 rfc3239.txt \
55 rfc3380.txt \
56 rfc3381.txt \
57 rfc3382.txt \
58 rfc3391.txt \
59 rfc3510.txt \
60 rfc3712.txt \
61 rfc3986.txt \
62 rfc3995.txt \
63 rfc3996.txt \
64 rfc3997.txt \
65 rfc3998.txt
66
67 .SUFFIXES: .html .txt
68 .txt.html: rfctohtml
69 echo Converting $< to HTML...
70 ./rfctohtml $< ../doc/help/$@
71
72
73 #
74 # Make everything...
75 #
76
77 all: rfctohtml $(RFCS:.txt=.html)
78
79
80 #
81 # Clean all config and object files...
82 #
83
84 clean:
85 $(RM) rfctohtml rfctohtml.o
86 $(RM) $(RFCS:.txt=.html)
87
88
89 #
90 # Dummy depend target...
91 #
92
93 depend:
94
95
96 #
97 # Install files...
98 #
99
100 install: all
101
102
103 #
104 # Uninstall files...
105 #
106
107 uninstall:
108
109
110 #
111 # rfctohtml - make html versions of RFCs...
112 #
113
114 rfctohtml: rfctohtml.o ../cups/libcups.a
115 $(CC) $(LDFLAGS) -o $@ rfctohtml.o ../cups/libcups.a \
116 $(COMMONLIBS) $(LIBZ)
117
118
119 #
120 # End of "$Id: Makefile 5229 2006-03-05 16:48:12Z mike $".
121 #