]> cygwin.com Git - cygwin-apps/setup.git/blame - Makefile.am
Add OnNotify virtual function to class Window for WM_NOTIFY notifications
[cygwin-apps/setup.git] / Makefile.am
CommitLineData
f6100b6f
RC
1## Process this file with automake to produce Makefile.in
2#
f6100b6f
RC
3# Copyright (c) 2000, Red Hat, Inc.
4# Copyright (c) 2002, Robert Collins
5#
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2 of the License, or
9# (at your option) any later version.
10#
11# A copy of the GNU General Public License can be found at
12# http://www.gnu.org/
13#
f6100b6f
RC
14# Makefile for Cygwin installer
15
fe434e30 16SUBDIRS := @subdirs@ tests
f6100b6f
RC
17
18## DISTCLEANFILES = include/stamp-h include/stamp-h[0-9]*
19
8b726ef6
MB
20# We would like to use -Winline for C++ as well, but some STL code triggers
21# this warning. (Bug verified present in gcc-3.3)
abad8c0c 22BASECXXFLAGS = -Werror -Wall -Wpointer-arith -Wcomments \
99f33a3b
CV
23 -Wcast-align -Wwrite-strings -fno-builtin-sscanf \
24 -Wno-attributes
1c6add37 25AM_CXXFLAGS = $(BASECXXFLAGS) -std=gnu++11 ${$(*F)_CXXFLAGS}
abad8c0c 26AM_CFLAGS = $(BASECXXFLAGS) -Wmissing-declarations -Winline \
43fe4376 27 -Wstrict-prototypes -Wmissing-prototypes
dacb1ebd
BD
28AM_YFLAGS = -d
29AM_LFLAGS = -8
92ef6cf8 30WINDRES = @WINDRES@
4221a216 31AM_CPPFLAGS = -DLZMA_API_STATIC -I$(srcdir)/libgetopt++/include \
c9641752 32 $(ZLIB_CFLAGS) $(LZMA_CFLAGS) $(ZSTD_CFLAGS) $(LIBCRYPT_CFLAGS) $(LIBSOLV_CFLAGS)
f6100b6f 33
6a03d5cd
CV
34inilex_CXXFLAGS:=-Wno-sign-compare
35
e49fef4d 36noinst_PROGRAMS = @SETUP@$(EXEEXT) @INILINT@
58ee6135
RC
37
38EXTRA_PROGRAMS = inilint
19911586 39## noinst_PROGRAMS +=inilint
f6100b6f 40
45e01f23 41EXTRA_DIST = \
89fc4ceb
MB
42 CHANGES \
43 CONTRIBUTORS \
44 COPYING \
45 bootstrap.sh \
46 check-na.bmp \
47 check-no.bmp \
48 check-yes.bmp \
89fc4ceb
MB
49 choose-spin.bmp \
50 cygwin.ico \
c0342e37
CV
51 cygwin-setup.ico \
52 cygwin-terminal.ico \
89fc4ceb 53 setup.exe.manifest \
2258d2a1 54 setup64.exe.manifest \
89fc4ceb
MB
55 tree-minus.bmp \
56 tree-plus.bmp
45e01f23 57
443b9db6 58# iniparse.hh is generated from iniparse.yy via bison -d, so it needs to be
dacb1ebd
BD
59# included here for proper tracking (but not iniparse.cc, since automake
60# knows about that already)
89fc4ceb
MB
61BUILT_SOURCES = \
62 setup_version.c \
443b9db6 63 iniparse.hh
f6100b6f 64
92ef6cf8
BD
65CLEANFILES = setup_version.c
66
89fc4ceb 67inilint_LDADD = \
c63e8b4a 68 libgetopt++/libgetopt++.la
58ee6135 69inilint_SOURCES = \
89fc4ceb
MB
70 filemanip.cc \
71 filemanip.h \
72 find.cc \
73 find.h \
74 FindVisitor.cc \
75 FindVisitor.h \
76 LogSingleton.cc \
77 LogSingleton.h \
78 IniDBBuilder.h \
79 inilintmain.cc \
c63e8b4a 80 inilex.ll \
dacb1ebd 81 iniparse.yy \
89fc4ceb
MB
82 IniParseFeedback.cc \
83 IniParseFeedback.h \
84 io_stream.h \
85 io_stream.cc \
86 io_stream_file.h \
87 io_stream_file.cc \
88 IOStreamProvider.h \
89 mkdir.cc \
90 mkdir.h \
e49fef4d 91 mklink2.cc \
89fc4ceb
MB
92 PackageSpecification.cc \
93 PackageSpecification.h \
94 PackageTrust.h \
95 csu_util/rfc1738.cc \
96 csu_util/rfc1738.h \
97 String++.cc \
e49fef4d 98 String++.h
58ee6135 99
e49fef4d 100@SETUP@_LDADD = \
4221a216
JT
101 libgetopt++/libgetopt++.la \
102 $(LIBGCRYPT_LIBS) \
c9641752 103 $(ZSTD_LIBS) \
4221a216
JT
104 $(LZMA_LIBS) \
105 $(BZ2_LIBS) \
106 $(ZLIB_LIBS) \
107 $(LIBSOLV_LIBS) -lregex \
da93010a 108 -lshlwapi -lcomctl32 -lole32 -lpsapi -luuid -lntdll -lwininet -lws2_32 -lmingw32
e49fef4d
YS
109@SETUP@_LDFLAGS = -mwindows -Wc,-static -static-libtool-libs
110@SETUP@_SOURCES = \
f9e903a3
RC
111 AntiVirus.cc \
112 AntiVirus.h \
f6100b6f 113 archive.cc \
45e01f23 114 archive.h \
f6100b6f 115 archive_tar.cc \
45e01f23 116 archive_tar.h \
f6100b6f 117 archive_tar_file.cc \
f6100b6f 118 choose.cc \
45e01f23 119 choose.h \
f6100b6f 120 compress.cc \
45e01f23 121 compress.h \
f6100b6f 122 compress_bz.cc \
45e01f23 123 compress_bz.h \
f6100b6f 124 compress_gz.cc \
45e01f23 125 compress_gz.h \
671140f9
CW
126 compress_xz.cc \
127 compress_xz.h \
c9641752
AG
128 compress_zstd.cc \
129 compress_zstd.h \
b1902cbc
JT
130 confirm.cc \
131 confirm.h \
39b42ff3
RC
132 ConnectionSetting.cc \
133 ConnectionSetting.h \
ee91d9be
RC
134 ControlAdjuster.cc \
135 ControlAdjuster.h \
dbfe3c19
DK
136 crypto.cc \
137 crypto.h \
138 cyg-pubkey.h \
f6100b6f 139 desktop.cc \
45e01f23 140 desktop.h \
f6100b6f 141 dialog.cc \
45e01f23 142 dialog.h \
f6100b6f 143 diskfull.cc \
45e01f23 144 diskfull.h \
f6100b6f 145 download.cc \
58ee6135
RC
146 download.h \
147 Exception.cc \
148 Exception.h \
f6100b6f 149 find.cc \
45e01f23 150 find.h \
b401ef47
RC
151 FindVisitor.cc \
152 FindVisitor.h \
f6100b6f 153 filemanip.cc \
45e01f23 154 filemanip.h \
f6100b6f 155 fromcwd.cc \
31f0ccce 156 Generic.h \
f6100b6f 157 geturl.cc \
45e01f23 158 geturl.h \
dbfe3c19
DK
159 gpg-packet.cc \
160 gpg-packet.h \
f6100b6f 161 ini.cc \
45e01f23 162 ini.h \
076654e7
RC
163 IniDBBuilder.h \
164 IniDBBuilderPackage.cc \
165 IniDBBuilderPackage.h \
c63e8b4a 166 inilex.ll \
dacb1ebd 167 iniparse.yy \
67829ce0
RC
168 IniParseFeedback.cc \
169 IniParseFeedback.h \
f6100b6f
RC
170 install.cc \
171 io_stream.cc \
45e01f23 172 io_stream.h \
f6100b6f 173 io_stream_cygfile.cc \
45e01f23 174 io_stream_cygfile.h \
f6100b6f 175 io_stream_file.cc \
45e01f23 176 io_stream_file.h \
f6100b6f 177 io_stream_memory.cc \
45e01f23 178 io_stream_memory.h \
19911586 179 IOStreamProvider.h \
dbfe3c19
DK
180 KeysSetting.cc \
181 KeysSetting.h \
1c159e0a
JT
182 libsolv.cc \
183 libsolv.h \
f6100b6f 184 localdir.cc \
45e01f23 185 localdir.h \
9f4a0c62
RC
186 LogFile.cc \
187 LogFile.h \
188 LogSingleton.cc \
189 LogSingleton.h \
f6100b6f 190 main.cc \
f6100b6f 191 mkdir.cc \
45e01f23 192 mkdir.h \
f6100b6f 193 mklink2.cc \
45e01f23 194 mklink2.h \
f6100b6f 195 mount.cc \
45e01f23 196 mount.h \
f6100b6f 197 msg.cc \
45e01f23 198 msg.h \
f6100b6f 199 net.cc \
45e01f23 200 net.h \
f6100b6f 201 netio.cc \
45e01f23 202 netio.h \
f6100b6f 203 nio-ie5.cc \
45e01f23 204 nio-ie5.h \
f6100b6f 205 package_db.cc \
45e01f23 206 package_db.h \
711d8346 207 package_depends.h \
4cd71131 208 package_depends.cc \
f6100b6f 209 package_meta.cc \
45e01f23 210 package_meta.h \
f6100b6f 211 package_source.cc \
45e01f23 212 package_source.h \
f3992588 213 package_version.h \
aa1e3b4d
RC
214 PackageSpecification.cc \
215 PackageSpecification.h \
076654e7 216 PackageTrust.h \
f6100b6f 217 PickCategoryLine.cc \
45e01f23 218 PickCategoryLine.h \
45e01f23 219 PickLine.h \
f6100b6f 220 PickPackageLine.cc \
45e01f23 221 PickPackageLine.h \
f6100b6f 222 PickView.cc \
45e01f23 223 PickView.h \
f6100b6f 224 postinstall.cc \
018b960d
JT
225 postinstallresults.cc \
226 postinstallresults.h \
82306ac2
BD
227 prereq.cc \
228 prereq.h \
ec366f61
JT
229 processlist.cc \
230 processlist.h \
f6100b6f 231 proppage.cc \
45e01f23 232 proppage.h \
f6100b6f 233 propsheet.cc \
45e01f23 234 propsheet.h \
8a264069 235 RECTWrapper.h \
f6100b6f 236 res.rc \
45e01f23 237 resource.h \
f6100b6f 238 root.cc \
45e01f23 239 root.h \
f6100b6f 240 script.cc \
45e01f23 241 script.h \
2b734ec7 242 setup_version.h \
f6100b6f 243 setup_version.c \
be13ef43
CV
244 sha2.h \
245 sha2.c \
f6100b6f 246 site.cc \
45e01f23 247 site.h \
f6100b6f 248 source.cc \
45e01f23 249 source.h \
6ff96351
RC
250 SourceSetting.cc \
251 SourceSetting.h \
f6100b6f 252 splash.cc \
45e01f23 253 splash.h \
f6100b6f 254 state.cc \
45e01f23 255 state.h \
f6100b6f 256 String++.cc \
45e01f23 257 String++.h \
f6100b6f 258 threebar.cc \
45e01f23 259 threebar.h \
ead15931
RC
260 UserSettings.cc \
261 UserSettings.h \
5072c0bb 262 win32.cc \
45e01f23
RC
263 win32.h \
264 window.cc \
f4d80c3f 265 window.h \
0229b1d7
MB
266 csu_util/MD5Sum.cc \
267 csu_util/MD5Sum.h \
946198be
MB
268 csu_util/rfc1738.cc \
269 csu_util/rfc1738.h \
2b734ec7 270 csu_util/version_compare.cc \
d88dca4a 271 csu_util/version_compare.h
89fc4ceb 272
679f6a2e 273GITVER := $(shell cd $(srcdir) && git describe --match release_\* --abbrev=6 --dirty || "N/A")
ba3279e3 274VER := $(subst release_,,$(GITVER))
b9d154a2 275ARCH := @ARCH@
b941c8be 276
451e2119 277setup_version.c : Makefile
ba3279e3 278 @echo "Setup version: " $(VER)
e07b6f3d 279 $(AM_V_GEN)(echo '#define VERSION_PREFIX "%%% setup-version"';\
ba3279e3 280 echo 'static const char version_store[] = VERSION_PREFIX " '$(VER)'";';\
e07b6f3d 281 echo 'const char *setup_version = version_store + sizeof (VERSION_PREFIX);') > version.tmp && \
f6100b6f
RC
282 mv version.tmp setup_version.c
283
2ae3cf4e 284# setup.exe.manifest is included in res.rc
2258d2a1 285res.o: @SETUP@.exe.manifest
2ae3cf4e 286
92ef6cf8 287.rc.o:
e07b6f3d 288 $(AM_V_GEN)$(WINDRES) --include-dir $(srcdir) -o $@ $<
f6100b6f 289
a3cc7986 290setup-src:
06eb6617
AG
291 @ver=setup-$(VER);\
292 cd ${srcdir}; rm -f $$ver; ln -sf . $$ver;\
293 git ls-files | tar -T - -cJf ${CURDIR}/$$ver-src.tar.xz;\
294 echo $$ver-src.tar.xz; exec rm -f $$ver
a3cc7986 295
07f1b4a8
CV
296# optional: strip and compress executable
297.PHONY: strip upx
298
299strip: all
77ddbf45
JT
300 $(OBJCOPY) --add-gnu-debuglink=/dev/null --only-keep-debug setup$(EXEEXT) setup.dbg
301 $(OBJCOPY) --strip-all setup$(EXEEXT)
302 $(OBJCOPY) --add-gnu-debuglink=setup.dbg setup$(EXEEXT) setup$(EXEEXT)
303
b9d154a2
JT
304CLEANFILES += setup.dbg
305
07f1b4a8
CV
306upx: strip
307 @if [ -e `which upx` ]; then\
308 upx --best --lzma setup$(EXEEXT) ;\
309 else \
310 echo "UPX doesn't seem to be installed, cannot compress setup$(EXEEXT)." ;\
311 fi
b9d154a2
JT
312
313release: upx
314 cp setup.dbg setup-${VER}.${ARCH}.dbg
315 cp setup${EXEEXT} setup-${VER}.${ARCH}${EXEEXT}
316
71c57a35
JT
317UPLOAD_HOST=cygwin-admin@cygwin.com
318UPLOAD_PATH=/www/sourceware/htdocs/cygwin/setup
319
320upload: release
7a80c6d2
JT
321 scp setup-${VER}.$(ARCH).exe setup-${VER}.$(ARCH).dbg ${UPLOAD_HOST}:${UPLOAD_PATH}
322 ssh ${UPLOAD_HOST} gpg --detach-sign ${UPLOAD_PATH}/setup-${VER}.$(ARCH).exe
71c57a35 323
b9d154a2
JT
324clean-local:
325 rm -f setup*${EXEEXT} setup*.dbg
This page took 1.14202 seconds and 5 git commands to generate.