]> git.ipfire.org Git - thirdparty/cups.git/blame - standards/Makefile
Merge changes from CUPS 1.4svn-r7961.
[thirdparty/cups.git] / standards / Makefile
CommitLineData
fa73b229 1#
b19ccc9e 2# "$Id: Makefile 7871 2008-08-27 21:12:43Z mike $"
fa73b229 3#
4# Standards makefile for the Common UNIX Printing System (CUPS).
5#
50fe7201 6# Copyright 2007-2008 by Apple Inc.
fa73b229 7# Copyright 2006 by Easy Software Products.
8#
9# These coded instructions, statements, and computer programs are the
bc44d920 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/".
fa73b229 14#
15
16include ../Makedefs
17
18
19#
20# Standards...
21#
22
23RFCS = \
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
68all: rfctohtml $(RFCS:.txt=.html)
69
70
c9fc04c6
MS
71#
72# Make library targets...
73#
74
75libs:
76
77
5f64df29
MS
78#
79# Make unit tests...
80#
81
82unittests:
83
84
fa73b229 85#
86# Clean all config and object files...
87#
88
89clean:
90 $(RM) rfctohtml rfctohtml.o
91 $(RM) $(RFCS:.txt=.html)
92
93
94#
95# Dummy depend target...
96#
97
98depend:
99
100
101#
50fe7201 102# Install all targets...
fa73b229 103#
104
50fe7201
MS
105install: all install-data install-headers install-libs install-exec
106
107
108#
109# Install data files...
110#
111
112install-data:
113
114
115#
116# Install programs...
117#
118
119install-exec:
120
121
122#
123# Install headers...
124#
125
126install-headers:
127
128
129#
130# Install libraries...
131#
132
133install-libs:
fa73b229 134
135
757d2cad 136#
137# Uninstall files...
138#
139
140uninstall:
141
142
fa73b229 143#
144# rfctohtml - make html versions of RFCs...
145#
146
147rfctohtml: rfctohtml.o ../cups/libcups.a
c9fc04c6 148 $(CC) $(ARCHFLAGS) $(LDFLAGS) -o $@ rfctohtml.o ../cups/libcups.a \
89d46774 149 $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
fa73b229 150
151
152#
b19ccc9e 153# End of "$Id: Makefile 7871 2008-08-27 21:12:43Z mike $".
fa73b229 154#