]> git.ipfire.org Git - thirdparty/cups.git/blob - Makedefs.in
Load cups into easysw/current.
[thirdparty/cups.git] / Makedefs.in
1 #
2 # "$Id: Makedefs.in 4836 2005-11-13 06:14:46Z mike $"
3 #
4 # Common makefile definitions for the Common UNIX Printing System (CUPS).
5 #
6 # Copyright 1997-2005 by Easy Software Products, all rights reserved.
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 #
26 # Programs...
27 #
28
29 AR = @AR@
30 AWK = @AWK@
31 CC = @LIBTOOL@ @CC@
32 CXX = @LIBTOOL@ @CXX@
33 DSO = @DSO@
34 HTMLDOC = @HTMLDOC@
35 INSTALL = @INSTALL@
36 LIBTOOL = @LIBTOOL@
37 LN = @LN@ -sf
38 MV = @MV@
39 RANLIB = @RANLIB@
40 RM = @RM@ -f
41 SED = @SED@
42 SHELL = /bin/sh
43 STRIP = @STRIP@
44
45 #
46 # Installation programs...
47 #
48
49 INSTALL_BIN = $(LIBTOOL) $(INSTALL) -m 755 -s
50 INSTALL_DATA = $(INSTALL) -m 644
51 INSTALL_DIR = $(INSTALL) -d
52 INSTALL_LIB = $(LIBTOOL) $(INSTALL) -m 755
53 INSTALL_MAN = $(INSTALL) -m 644
54 INSTALL_SCRIPT = $(INSTALL) -m 755
55
56 #
57 # Default user and group for the scheduler...
58 #
59
60 CUPS_USER = @CUPS_USER@
61 CUPS_GROUP = @CUPS_GROUP@
62
63 #
64 # Libraries...
65 #
66
67 LIBCUPS = @LIBCUPS@
68 LIBCUPSIMAGE = @LIBCUPSIMAGE@
69 LIBJPEG = @LIBJPEG@
70 LIBMALLOC = @LIBMALLOC@
71 LIBPAPER = @LIBPAPER@
72 LIBPNG = @LIBPNG@
73 LIBSLP = @LIBSLP@
74 LIBTIFF = @LIBTIFF@
75 LIBZ = @LIBZ@
76
77 #
78 # Program options...
79 #
80 # OPTIM defines the common compiler optimization/debugging options.
81 # OPTIONS defines other compile-time options (currently only -dDEBUG for
82 # extra debug info)
83 #
84
85 ARFLAGS = @ARFLAGS@
86 BACKLIBS = @BACKLIBS@
87 CFLAGS = -I.. $(RC_CFLAGS) $(SSLFLAGS) @CPPFLAGS@ @CFLAGS@ \
88 @LARGEFILE@ $(OPTIONS)
89 COMMONLIBS = @LIBS@
90 CXXFLAGS = -I.. $(RC_CFLAGS) $(SSLFLAGS) @CPPFLAGS@ @CXXFLAGS@ \
91 @LARGEFILE@ $(OPTIONS)
92 CXXLIBS = @CXXLIBS@
93 DSOFLAGS = @DSOFLAGS@
94 DSOLIBS = @DSOLIBS@ $(COMMONLIBS)
95 IMGLIBS = @IMGLIBS@ -lm
96 LDFLAGS = -L../cups -L../filter $(RC_CFLAGS) @LDFLAGS@ $(OPTIM)
97 LINKCUPS = @LINKCUPS@ $(SSLLIBS)
98 LINKCUPSIMAGE = @LINKCUPSIMAGE@
99 LIBS = $(LINKCUPS) $(COMMONLIBS)
100 OPTIM = @OPTIM@
101 OPTIONS =
102 PAMLIBS = @PAMLIBS@
103 SSLFLAGS = @SSLFLAGS@
104 SSLLIBS = @SSLLIBS@
105
106 #
107 # Directories...
108 #
109 # The first section uses the GNU names (which are *extremely*
110 # difficult to find in a makefile because they are lowercase...)
111 # We have to define these first because autoconf uses ${prefix}
112 # and ${exec_prefix} for most of the other directories...
113 #
114 # This is immediately followed by definition in ALL CAPS for the
115 # needed directories...
116 #
117
118 bindir = @bindir@
119 datadir = @datadir@
120 exec_prefix = @exec_prefix@
121 includedir = @includedir@
122 infodir = @infodir@
123 libdir = @libdir@
124 libexecdir = @libexecdir@
125 localstatedir = @localstatedir@
126 mandir = @mandir@
127 oldincludedir = @oldincludedir@
128 prefix = @prefix@
129 sbindir = @sbindir@
130 sharedstatedir = @sharedstatedir@
131 srcdir = @srcdir@
132 sysconfdir = @sysconfdir@
133 top_srcdir = @top_srcdir@
134
135 BUILDROOT = $(DSTROOT)
136
137 AMANDIR = $(BUILDROOT)@AMANDIR@
138 BINDIR = $(BUILDROOT)@bindir@
139 CACHEDIR = $(BUILDROOT)@CUPS_CACHEDIR@
140 DATADIR = $(BUILDROOT)@CUPS_DATADIR@
141 DOCDIR = $(BUILDROOT)@CUPS_DOCROOT@
142 INCLUDEDIR = $(BUILDROOT)$(includedir)
143 INITDIR = @INITDIR@
144 INITDDIR = @INITDDIR@
145 LIBDIR = $(BUILDROOT)$(libdir)
146 LOCALEDIR = $(BUILDROOT)@CUPS_LOCALEDIR@
147 LOGDIR = $(BUILDROOT)@CUPS_LOGDIR@
148 MANDIR = $(BUILDROOT)@mandir@
149 PMANDIR = $(BUILDROOT)@PMANDIR@
150 REQUESTS = $(BUILDROOT)@CUPS_REQUESTS@
151 SBINDIR = $(BUILDROOT)@sbindir@
152 SERVERBIN = $(BUILDROOT)@CUPS_SERVERBIN@
153 SERVERROOT = $(BUILDROOT)@CUPS_SERVERROOT@
154 STATEDIR = $(BUILDROOT)@CUPS_STATEDIR@
155
156 MAN1EXT = @MAN1EXT@
157 MAN5EXT = @MAN5EXT@
158 MAN8EXT = @MAN8EXT@
159 MAN8DIR = @MAN8DIR@
160
161 PAMDIR = $(BUILDROOT)@PAMDIR@
162 PAMFILE = @PAMFILE@
163
164
165 #
166 # Rules...
167 #
168
169 .SILENT:
170 .SUFFIXES: .1 .1.gz .1m .1m.gz .5 .5.gz .8 .8.gz .a .c .cxx .h .man .o .gz
171
172 .c.o:
173 echo Compiling $<...
174 $(CC) $(OPTIM) $(CFLAGS) -c $<
175
176 .cxx.o:
177 echo Compiling $<...
178 $(CXX) $(OPTIM) $(CXXFLAGS) -c $<
179
180 .man.1 .man.1m .man.5 .man.8:
181 echo Linking $<...
182 $(RM) $@
183 $(LN) $< $@
184
185 .man.1.gz .man.1m.gz .man.5.gz .man.8.gz .man.gz:
186 echo -n Compressing $<...
187 $(RM) $@
188 gzip -v9 <$< >$@
189
190
191 #
192 # End of "$Id: Makedefs.in 4836 2005-11-13 06:14:46Z mike $"
193 #