]> cygwin.com Git - cygwin-apps/setup.git/blame - Makefile.am
2003-03-26 Max Bowsher <maxb@ukf.net>
[cygwin-apps/setup.git] / Makefile.am
CommitLineData
f6100b6f
RC
1## Process this file with automake to produce Makefile.in
2#
3# $Id$
4#
5# Copyright (c) 2000, Red Hat, Inc.
6# Copyright (c) 2002, Robert Collins
7#
8# This program is free software; you can redistribute it and/or modify
9# it under the terms of the GNU General Public License as published by
10# the Free Software Foundation; either version 2 of the License, or
11# (at your option) any later version.
12#
13# A copy of the GNU General Public License can be found at
14# http://www.gnu.org/
15#
16# Written by Christopher Faylor <cgf@redhat.com>
17# and Robert Collins <rbtcollins@hotmail.com>
18#
19# Makefile for Cygwin installer
20
48c7d667 21AUTOMAKE_OPTIONS = dist-bzip2 subdir-objects 1.6 foreign
b401ef47
RC
22DIST_SUBDIRS = bz2lib zlib libgetopt++
23SUBDIRS = bz2lib zlib libgetopt++ @RSYNC@
f6100b6f
RC
24
25## DISTCLEANFILES = include/stamp-h include/stamp-h[0-9]*
26
8368a29f
RC
27##AM_CFLAGS = -Werror -Wall -Winline -Wpointer-arith
28AM_CFLAGS = -Werror -Wall -Wpointer-arith \
f6100b6f 29 -Wcast-align -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes \
58ee6135
RC
30 -Wmissing-declarations -Wcomments
31AM_CXXFLAGS = $(AM_CFLAGS)
f6100b6f
RC
32
33WINDRES := @WINDRES@
34
6908b7d7 35INCLUDES = -I$(srcdir)/bz2lib -I$(srcdir)/libgetopt++/include
f6100b6f 36
58ee6135 37noinst_PROGRAMS = \
19911586
RC
38 setup \
39 @INILINT@
58ee6135
RC
40
41EXTRA_PROGRAMS = inilint
19911586 42## noinst_PROGRAMS +=inilint
f6100b6f
RC
43
44# to avoid false errors that assembly generates
45WARNONLY_CFLAGS = -Winline -Wall -Wpointer-arith -Wcast-align \
46 -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes \
58ee6135 47 -Wmissing-declarations -Wcomments $(INCLUDES)
f6100b6f 48
45e01f23
RC
49EXTRA_DIST = \
50 check-na.bmp \
51 check-no.bmp \
52 check-yes.bmp \
53 choose-rtarrow.bmp \
54 choose-spin.bmp \
55 cygwin.ico \
56 inilex.l \
b92028a4 57 iniparse.y
45e01f23 58
f6100b6f
RC
59BUILT_SOURCES = setup_version.c \
60 inilex.cc \
61 iniparse.cc
62
2b48ecd0
RC
63if MINGWTARGET
64 inilint_extras = \
65 autoload.c \
2b48ecd0
RC
66 mklink2.cc
67else
68 inilint_extras =
69endif
70
b401ef47
RC
71if ENABLERSYNC
72 rsync_source = \
73 io_stream_rsync.cc \
74 io_stream_rsync.h
75else
76 rsync_source =
77endif
78
4361306f 79inilint_LDADD = libgetopt++/libgetopt++.la -luser32 -lkernel32
58ee6135 80inilint_SOURCES = \
b92028a4
RC
81 filemanip.cc \
82 filemanip.h \
aa1e3b4d
RC
83 find.cc \
84 find.h \
85 FindVisitor.cc \
86 FindVisitor.h \
9f4a0c62
RC
87 LogSingleton.cc \
88 LogSingleton.h \
076654e7
RC
89 IniDBBuilder.cc \
90 IniDBBuilder.h \
58ee6135
RC
91 inilex.cc \
92 inilintmain.cc \
93 iniparse.cc \
94 iniparse.h \
aa1e3b4d
RC
95 IniParseFeedback.cc \
96 IniParseFeedback.h \
076654e7
RC
97 io_stream.h \
98 io_stream.cc \
2b48ecd0
RC
99 io_stream_file.h \
100 io_stream_file.cc \
19911586 101 IOStreamProvider.h \
aa1e3b4d
RC
102 mkdir.cc \
103 mkdir.h \
84c4f5d1
RC
104 PackageSpecification.cc \
105 PackageSpecification.h \
076654e7 106 PackageTrust.h \
58ee6135
RC
107 rfc1738.cc \
108 rfc1738.h \
109 String++.cc \
2b48ecd0
RC
110 String++.h \
111 $(inilint_extras)
58ee6135 112
b401ef47
RC
113setup_LDADD = res.o zlib/libzcygw.a bz2lib/libbz2.a \
114 libgetopt++/libgetopt++.la \
115 @RSYNCLIB@ \
4361306f 116 -luser32 -lkernel32 \
b401ef47 117 -lcomctl32 -lole32 -lwsock32 -lnetapi32 -ladvapi32 -luuid
58ee6135 118setup_LDFLAGS = -mwindows
f6100b6f 119setup_SOURCES = \
f9e903a3
RC
120 AntiVirus.cc \
121 AntiVirus.h \
f6100b6f 122 archive.cc \
45e01f23 123 archive.h \
f6100b6f 124 archive_tar.cc \
45e01f23 125 archive_tar.h \
f6100b6f
RC
126 archive_tar_file.cc \
127 autoload.c \
128 category.cc \
45e01f23 129 category.h \
f6100b6f 130 choose.cc \
45e01f23 131 choose.h \
f6100b6f 132 cistring.cc \
45e01f23 133 cistring.h \
f6100b6f 134 compress.cc \
45e01f23 135 compress.h \
f6100b6f 136 compress_bz.cc \
45e01f23 137 compress_bz.h \
f6100b6f 138 compress_gz.cc \
45e01f23 139 compress_gz.h \
f6100b6f 140 cygpackage.cc \
45e01f23 141 cygpackage.h \
f6100b6f 142 desktop.cc \
45e01f23 143 desktop.h \
f6100b6f 144 dialog.cc \
45e01f23 145 dialog.h \
f6100b6f 146 diskfull.cc \
45e01f23 147 diskfull.h \
f6100b6f 148 download.cc \
58ee6135
RC
149 download.h \
150 Exception.cc \
151 Exception.h \
f6100b6f 152 find.cc \
45e01f23 153 find.h \
b401ef47
RC
154 FindVisitor.cc \
155 FindVisitor.h \
864a5ec1
MB
156 FilterVisitor.cc \
157 FilterVisitor.h \
f6100b6f 158 filemanip.cc \
45e01f23 159 filemanip.h \
f6100b6f 160 fromcwd.cc \
f6100b6f 161 geturl.cc \
45e01f23 162 geturl.h \
f6100b6f 163 hash.cc \
45e01f23 164 hash.h \
f6100b6f 165 ini.cc \
45e01f23 166 ini.h \
076654e7
RC
167 IniDBBuilder.cc \
168 IniDBBuilder.h \
169 IniDBBuilderPackage.cc \
170 IniDBBuilderPackage.h \
f6100b6f
RC
171 inilex.cc \
172 iniparse.cc \
173 iniparse.h \
67829ce0
RC
174 IniParseFeedback.cc \
175 IniParseFeedback.h \
b401ef47
RC
176 IniParseFindVisitor.cc \
177 IniParseFindVisitor.h \
f6100b6f
RC
178 install.cc \
179 io_stream.cc \
45e01f23 180 io_stream.h \
f6100b6f 181 io_stream_cygfile.cc \
45e01f23 182 io_stream_cygfile.h \
f6100b6f 183 io_stream_file.cc \
45e01f23 184 io_stream_file.h \
f6100b6f 185 io_stream_memory.cc \
45e01f23 186 io_stream_memory.h \
19911586 187 IOStreamProvider.h \
f6100b6f 188 localdir.cc \
45e01f23 189 localdir.h \
f6100b6f 190 log.cc \
45e01f23 191 log.h \
9f4a0c62
RC
192 LogFile.cc \
193 LogFile.h \
194 LogSingleton.cc \
195 LogSingleton.h \
f6100b6f 196 main.cc \
58ee6135
RC
197 md5.c \
198 md5.h \
199 MD5++.cc \
200 MD5++.h \
f6100b6f 201 mkdir.cc \
45e01f23 202 mkdir.h \
f6100b6f 203 mklink2.cc \
45e01f23 204 mklink2.h \
f6100b6f 205 mount.cc \
45e01f23 206 mount.h \
f6100b6f 207 msg.cc \
45e01f23 208 msg.h \
f6100b6f 209 net.cc \
45e01f23 210 net.h \
f6100b6f 211 netio.cc \
45e01f23 212 netio.h \
f6100b6f 213 nio-ie5.cc \
45e01f23 214 nio-ie5.h \
f6100b6f 215 nio-file.cc \
45e01f23 216 nio-file.h \
f6100b6f 217 nio-ftp.cc \
45e01f23 218 nio-ftp.h \
f6100b6f 219 nio-http.cc \
45e01f23 220 nio-http.h \
f6100b6f 221 package_db.cc \
45e01f23 222 package_db.h \
f6100b6f 223 package_meta.cc \
45e01f23 224 package_meta.h \
f6100b6f 225 package_source.cc \
45e01f23 226 package_source.h \
f6100b6f 227 package_version.cc \
45e01f23 228 package_version.h \
aa1e3b4d
RC
229 PackageSpecification.cc \
230 PackageSpecification.h \
076654e7 231 PackageTrust.h \
f6100b6f 232 PickCategoryLine.cc \
45e01f23 233 PickCategoryLine.h \
f6100b6f 234 PickLine.cc \
45e01f23 235 PickLine.h \
f6100b6f 236 PickPackageLine.cc \
45e01f23 237 PickPackageLine.h \
f6100b6f 238 PickView.cc \
45e01f23
RC
239 PickView.h \
240 port.h \
f6100b6f
RC
241 postinstall.cc \
242 proppage.cc \
45e01f23 243 proppage.h \
f6100b6f 244 propsheet.cc \
45e01f23 245 propsheet.h \
f6100b6f 246 res.rc \
45e01f23 247 resource.h \
f6100b6f 248 rfc1738.cc \
45e01f23 249 rfc1738.h \
f6100b6f 250 root.cc \
45e01f23 251 root.h \
b401ef47
RC
252 ScanFindVisitor.cc \
253 ScanFindVisitor.h \
f6100b6f 254 script.cc \
45e01f23 255 script.h \
f6100b6f
RC
256 setup_version.c \
257 simpsock.cc \
45e01f23 258 simpsock.h \
f6100b6f 259 site.cc \
45e01f23 260 site.h \
f6100b6f 261 source.cc \
45e01f23 262 source.h \
f6100b6f 263 splash.cc \
45e01f23 264 splash.h \
f6100b6f 265 state.cc \
45e01f23 266 state.h \
f6100b6f 267 String++.cc \
45e01f23 268 String++.h \
f6100b6f 269 threebar.cc \
45e01f23 270 threebar.h \
ead15931
RC
271 UserSetting.cc \
272 UserSetting.h \
273 UserSettings.cc \
274 UserSettings.h \
f6100b6f 275 version.cc \
45e01f23 276 version.h \
f6100b6f 277 win32.cc \
45e01f23
RC
278 win32.h \
279 window.cc \
b401ef47
RC
280 window.h \
281 $(rsync_source)
f6100b6f
RC
282
283setup_version.c : $(srcdir)/ChangeLog Makefile
284 V=`grep '^\$$Revision.*' $(srcdir)/ChangeLog \
285 | sed -e 's/\$$Revision:* *//' \
286 -e 's/ *$$.*//'` ;\
287 (echo '#define VERSION_PREFIX "%%% setup-version"';\
288 echo 'static const char version_store[] = VERSION_PREFIX " '$$V'";';\
289 echo 'const char *version = version_store + sizeof (VERSION_PREFIX);') > version.tmp;\
290 mv version.tmp setup_version.c
291
292%.o: %.rc
4361306f 293 $(WINDRES) --preprocessor "$(CC) -E -xc-header -DRC_INVOKED" --include-dir $(srcdir) -o $@ $<
f6100b6f 294
f6100b6f 295autoload.o: autoload.c
45e01f23
RC
296@AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
297@AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
298@AMDEP_TRUE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
f6100b6f
RC
299 $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(WARNONLY_CFLAGS) $(CFLAGS) -c -o $@ $< -fno-inline-functions
300
301inilex.o: inilex.cc
45e01f23
RC
302@AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
303@AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
304@AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
f6100b6f 305 $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
58ee6135 306 $(AM_CPPFLAGS) $(CPPFLAGS) $(WARNONLY_CFLAGS) $(CXXFLAGS) -c -o $@ $<
f6100b6f
RC
307
308iniparse.cc iniparse.h : iniparse.y
309 bison -d -o iniparse.cc $(srcdir)/iniparse.y
310 @mv iniparse.cc.h iniparse.h 2>/dev/null || mv iniparse.hh iniparse.h
311
312inilex.cc : inilex.l iniparse.h
313 flex -8 $(srcdir)/inilex.l
314 mv lex.yy.c inilex.cc
902c8a3f
RC
315
316# Make a distribution package and tarball
5090e3ce
RC
317release: setup$(EXEEXT) dist-all $(srcdir)/ChangeLog Makefile
318 $(STRIP) setup.exe && \
319 upx --best setup.exe && \
320 V=`grep '^\$$Revision.*' $(srcdir)/ChangeLog \
321 | sed -e 's/\$$Revision:* *//' \
322 -e 's/ *$$.*//'` ;\
4849e2fc 323 mv setup.exe setup-$${V}.exe && \
7cb35117
RC
324 mv setup-0.tar.bz2 setup-$${V}.tar.bz2 && \
325 tar cjf setup-$${V}-1-src.tar.bz2 setup-$${V}.tar.bz2
7d702af3
RC
326
327# Create a snapshot and upload it (requires write access)
328snapshot: release
329 V=`grep '^\$$Revision.*' $(srcdir)/ChangeLog \
330 | sed -e 's/\$$Revision:* *//' \
331 -e 's/ *$$.*//'` ;\
332 scp -C setup-$${V}.exe setup-$${V}.tar.bz2 $${cygwinsite}:setup-snapshots/
This page took 0.066483 seconds and 5 git commands to generate.