]> git.ipfire.org Git - thirdparty/cups.git/blame - standards/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / standards / Makefile
CommitLineData
fa73b229 1#
bc44d920 2# "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $"
fa73b229 3#
4# Standards makefile for the Common UNIX Printing System (CUPS).
5#
bc44d920 6# Copyright 2007 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
71#
72# Clean all config and object files...
73#
74
75clean:
76 $(RM) rfctohtml rfctohtml.o
77 $(RM) $(RFCS:.txt=.html)
78
79
80#
81# Dummy depend target...
82#
83
84depend:
85
86
87#
88# Install files...
89#
90
91install: all
92
93
757d2cad 94#
95# Uninstall files...
96#
97
98uninstall:
99
100
fa73b229 101#
102# rfctohtml - make html versions of RFCs...
103#
104
105rfctohtml: rfctohtml.o ../cups/libcups.a
ecdc0628 106 $(CC) $(LDFLAGS) -o $@ rfctohtml.o ../cups/libcups.a \
89d46774 107 $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
fa73b229 108
109
110#
bc44d920 111# End of "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $".
fa73b229 112#