OSDN Git Service

Add .hgignore as tracked file.
[mingw/mingw-get.git] / Makefile.in
1 # @configure_input@
2 #
3 # $Id$
4
5 PACKAGE_TARNAME = @PACKAGE_TARNAME@
6 PACKAGE_VERSION = @PACKAGE_VERSION@
7
8 # Written by Keith Marshall <keithmarshall@users.sourceforge.net>
9 # Copyright (C) 2009, 2010, 2011, 2012, MinGW.org Project
10 #
11 #
12 # Makefile template for mingw-get
13 #
14 #
15 # This is free software.  Permission is granted to copy, modify and
16 # redistribute this software, under the provisions of the GNU General
17 # Public License, Version 3, (or, at your option, any later version),
18 # as published by the Free Software Foundation; see the file COPYING
19 # for licensing details.
20 #
21 # Note, in particular, that this software is provided "as is", in the
22 # hope that it may prove useful, but WITHOUT WARRANTY OF ANY KIND; not
23 # even an implied WARRANTY OF MERCHANTABILITY, nor of FITNESS FOR ANY
24 # PARTICULAR PURPOSE.  Under no circumstances will the author, or the
25 # MinGW.org Project, accept liability for any damages, however caused,
26 # arising from the use of this software.
27 #
28 PACKAGE_SUBSYSTEM = @host_os@
29
30 CLI_RELEASE_CLASS = @CLI_RELEASE_CLASS@
31 GUI_RELEASE_CLASS = @GUI_RELEASE_CLASS@
32
33 BUILD_TAG = `>> build.tag; cat build.tag`
34 DEBUGLEVEL = @DEBUGLEVEL@
35
36 srcdir = @srcdir@
37 abs_top_srcdir = @abs_top_srcdir@
38
39 vpath %.ico @srcdir@/icons
40 VPATH = @top_srcdir@/src:@top_srcdir@/src/pkginfo:@top_srcdir@/tinyxml
41
42 CC = @CC@
43 CFLAGS = @CFLAGS@
44 CPPFLAGS = @CPPFLAGS@ -D DEBUGLEVEL=$(DEBUGLEVEL) $(INCLUDES)
45
46 CXX = @CXX@
47 CXXFLAGS = $(CFLAGS)
48
49 INCLUDES = -I ${srcdir}/src -I ${srcdir}/src/pkginfo -I ${srcdir}/tinyxml
50
51 LEX = @LEX@
52
53 AR = @AR@
54 ARFLAGS = @ARFLAGS@
55
56 RC = @RC@
57 RC_SCRIPT = tag=$(BUILD_TAG); \
58   test "x$$tag" != x && tag="-$(GUI_RELEASE_CLASS)-$$tag"; \
59     $(TAG_SCRIPT)
60
61 VERSION_SCRIPT = tag=$(BUILD_TAG); \
62   test "x$$tag" != x && tag="-$(CLI_RELEASE_CLASS)-$$tag"; \
63     $(TAG_SCRIPT)
64
65 TAG_SCRIPT = sed \
66   -e "s!%PACKAGE_NAME%!$(PACKAGE_TARNAME)!g" \
67   -e "s!%PACKAGE_VERSION%!$(PACKAGE_VERSION)$$tag!g" \
68   -e "s!%COPYRIGHT_HOLDER%!@COPYRIGHT_HOLDER@!g" \
69   -e "s!%YEARS_OF_ISSUE%!@YEARS_OF_ISSUE@!g"
70
71 RC_INCLUDES = -I ${srcdir}/src -I ${srcdir}/icons
72
73 OBJEXT = @OBJEXT@
74 EXEEXT = @EXEEXT@
75
76 LDFLAGS = @LDFLAGS@
77 GUI_LDFLAGS = -mwindows $(LDFLAGS)
78 LIBS = -Wl,-Bstatic -llua -lz -lbz2 -llzma -Wl,-Bdynamic -lwininet
79
80 CORE_DLL_OBJECTS  =  climain.$(OBJEXT) pkgshow.$(OBJEXT) dmh.$(OBJEXT) \
81    pkgbind.$(OBJEXT) pkginet.$(OBJEXT) pkgstrm.$(OBJEXT) pkgname.$(OBJEXT) \
82    pkgexec.$(OBJEXT) pkgfind.$(OBJEXT) pkginfo.$(OBJEXT) pkgspec.$(OBJEXT) \
83    pkgopts.$(OBJEXT) sysroot.$(OBJEXT) pkghash.$(OBJEXT) pkgkeys.$(OBJEXT) \
84    pkgdeps.$(OBJEXT) pkgreqs.$(OBJEXT) pkginst.$(OBJEXT) pkgunst.$(OBJEXT) \
85    tarproc.$(OBJEXT) xmlfile.$(OBJEXT) keyword.$(OBJEXT) vercmp.$(OBJEXT) \
86    tinyxml.$(OBJEXT) tinystr.$(OBJEXT) tinyxmlparser.$(OBJEXT) \
87    mkpath.$(OBJEXT)  tinyxmlerror.$(OBJEXT)
88
89 CLI_EXE_OBJECTS  =   \
90    clistub.$(OBJEXT) version.$(OBJEXT) approot.$(OBJEXT) getopt.$(OBJEXT)
91
92 GUIMAIN_OBJECTS  =   \
93    guimain.$(OBJEXT) guidata.$(OBJEXT) approot.$(OBJEXT) pkgview.$(OBJEXT)
94
95 GUIMAIN_LIBS = -lwtklite -lcomctl32
96
97 script_srcdir = ${srcdir}/scripts/libexec
98
99 BIN_PROGRAMS = pkginfo$(EXEEXT) mingw-get$(EXEEXT)
100 LIBEXEC_PROGRAMS = gui$(EXEEXT) guimain$(EXEEXT) lastrites$(EXEEXT)
101 LIBEXEC_SCRIPTS = ${script_srcdir}/setup.lua ${script_srcdir}/wsh.lua \
102    ${script_srcdir}/shlink.js ${script_srcdir}/unlink.js
103 LIBEXEC_DATA = mingw-get-0.dll
104
105 # Primary build goals...
106 #
107 all: $(BIN_PROGRAMS) $(LIBEXEC_PROGRAMS) $(LIBEXEC_DATA)
108
109 pkginfo$(EXEEXT):  driver.$(OBJEXT) pkginfo.$(OBJEXT)
110         $(CC) -o $@ $(CFLAGS) $(LDFLAGS) $+
111
112 mingw-get$(EXEEXT): $(CLI_EXE_OBJECTS)
113         $(CXX) -o $@ $(CXXFLAGS) $(LDFLAGS) $+
114
115 gui$(EXEEXT): guistub.$(OBJEXT) pkgicon.$(OBJEXT)
116         $(CXX) -o $@ $(CXXFLAGS) $(GUI_LDFLAGS) $+
117
118 guimain$(EXEEXT): $(GUIMAIN_OBJECTS) $(LIBEXEC_DATA)
119         $(CXX) -o $@ $(CXXFLAGS) $(GUI_LDFLAGS) $+ $(GUIMAIN_LIBS)
120
121 lastrites$(EXEEXT): rites.$(OBJEXT)
122         $(CC) -o $@ $(CFLAGS) $(GUI_LDFLAGS) $+
123
124 mingw-get-0.dll: $(CORE_DLL_OBJECTS)
125         $(CXX) -shared -o $@ $(CXXFLAGS) $(LDFLAGS) $+ $(LIBS)
126
127 # Compilation and dependency tracking...
128 #
129 DEPFLAGS = -MM -MP -MD
130 sinclude *.d
131
132 %.$(OBJEXT): %.c
133         $(CC) $(DEPFLAGS) $(CPPFLAGS) $(CFLAGS) $<
134         $(CC) -c $(CPPFLAGS) $(CFLAGS) -o $@ $<
135
136 %.$(OBJEXT): %.cpp
137         $(CXX) $(DEPFLAGS) $(CPPFLAGS) $(CXXFLAGS) $<
138         $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) -o $@ $<
139
140 %.$(OBJEXT): %.rc
141         $(CC) $(DEPFLAGS) $(RC_INCLUDES) -DRC_INVOKED -xc-header $<
142         $(RC_SCRIPT) $< | $(RC) $(RC_INCLUDES) -o $@
143
144 %.$(OBJEXT): %.ico
145         echo $* ICON $*.ico | $(RC) -I ${srcdir}/icons -o $@
146
147 # Release tagging...
148 #
149 time-stamp:
150 %.tagged.time: time-stamp
151         > $*.time
152
153 %.time:
154         > $*.time
155
156 %.tag: %.tagged.time
157         >> $@; tag=`date +%Y%m%d`; \
158           tag=`awk -F- -v today=$$tag ' \
159             BEGIN { tag = 1 } $$1 == today { tag += $$2 } \
160             END { print today "-" tag }' $@`; \
161           echo $$tag > $@
162
163 %.c: %.c.in
164         $(VERSION_SCRIPT) $< > $@
165
166 version.c: build.time
167 guidata.$(OBJEXT): build.time
168
169 # Installation tools and directory paths...
170 #
171 mkinstalldirs = @MKDIR_P@
172
173 prefix = @prefix@
174 exec_prefix = @exec_prefix@
175 localstatedir = @localstatedir@
176 libexecdir = @libexecdir@
177 bindir = @bindir@
178
179 PACKAGE_CONFIG_DIR = ${localstatedir}/lib/${PACKAGE_TARNAME}/data
180
181 INSTALL = @INSTALL@
182 INSTALL_DATA = @INSTALL_DATA@
183 INSTALL_PROGRAM = @INSTALL_PROGRAM@
184 INSTALL_SCRIPT = @INSTALL_SCRIPT@
185
186 STRIP = @STRIP@
187 LN_S = @LN_S@
188
189 # Installation rules...
190 #
191 installdirs:
192         $(mkinstalldirs) ${bindir}
193         $(mkinstalldirs) ${libexecdir}/${PACKAGE_TARNAME}
194         $(mkinstalldirs) ${PACKAGE_CONFIG_DIR}
195
196 install: installdirs install-profile
197         for image in $(BIN_PROGRAMS); do \
198           $(INSTALL_PROGRAM) $$image ${bindir}; \
199           done
200         for image in $(LIBEXEC_PROGRAMS); do \
201           $(INSTALL_PROGRAM) $$image ${libexecdir}/${PACKAGE_TARNAME}; \
202           done
203         for image in $(LIBEXEC_DATA) $(LIBEXEC_SCRIPTS); do \
204           $(INSTALL_DATA) $$image ${libexecdir}/${PACKAGE_TARNAME}; \
205           done
206
207 install-profile:
208         $(INSTALL_DATA) ${srcdir}/xml/profile.xml \
209           ${PACKAGE_CONFIG_DIR}/defaults.xml
210
211 install-strip: install
212         for image in $(BIN_PROGRAMS); do \
213           $(STRIP) ${bindir}/$$image; \
214           done
215         for image in $(LIBEXEC_PROGRAMS) $(LIBEXEC_DATA); do \
216           $(STRIP) ${libexecdir}/${PACKAGE_TARNAME}/$$image; \
217           done
218
219 # Packaging and distribution...
220 #
221 LICENCE_FILES = README COPYING
222 SRCDIST_FILES = $(LICENCE_FILES) ChangeLog NEWS INSTALL \
223   aclocal.m4 configure.ac configure Makefile.in version.c.in
224
225 SRCDIST_SUBDIRS = build-aux build-aux/m4 icons src src/pkginfo \
226   srcdist-doc scripts/libexec tinyxml xml
227
228 # The names of distributed package archive files incorporate version
229 # information, derived from PACKAGE_VERSION; this is decomposed, so that
230 # the PACKAGE_SUBSYSTEM may be interposed between the principal version
231 # number and any qualifying suffix, which specifies development status.
232 # Additionally, the package maintainer may specify, (at `make dist' time),
233 # a SNAPSHOT qualifier; if specified, this will be appended, (literally),
234 # to the principal version number component of the package version number,
235 # as it appears in the distributed archive file names.
236 #
237 PACKAGE_DISTROOT = $(PACKAGE_TARNAME)-$(PACKAGE_ROOTVERSION)
238 PACKAGE_ROOTVERSION = `echo $(PACKAGE_VERSION) | sed 's,-[^0-9].*,,'`
239 PACKAGE_DISTVERSION = `echo $(PACKAGE_VERSION)-$(PACKAGE_SUBSYSTEM) | sed \
240   -e 's,-[^0-9],-$(PACKAGE_SUBSYSTEM)&,' \
241   -e 's,\(-$(PACKAGE_SUBSYSTEM).*\)-$(PACKAGE_SUBSYSTEM),\1,' \
242   -e 's,-$(PACKAGE_SUBSYSTEM),$(SNAPSHOT)&,'`
243 PACKAGE_DISTNAME = $(PACKAGE_TARNAME)-$(PACKAGE_DISTVERSION)
244
245 dist: srcdist bindist readme.txt
246
247 # Specify default compression command, and associated file name extension,
248 # for creation and identification of packaged tar archives.
249 #
250 TARZIP = xz
251 TAREXT = tar.$(TARZIP)
252
253 bindist: all licdist
254         rm -rf staged
255         $(MAKE) --no-print-directory prefix=`pwd`/staged install-strip
256         cd staged; tar chf - bin/pkginfo$(EXEEXT) | $(TARZIP) -c > \
257           ../pkginfo-$(PACKAGE_DISTVERSION)-bin.$(TAREXT)
258         rm staged/bin/pkginfo$(EXEEXT)
259         cd staged; tar chf - * | $(TARZIP) -c > \
260           ../$(PACKAGE_DISTNAME)-bin.$(TAREXT)
261         cd staged; zip -r ../$(PACKAGE_DISTNAME)-bin.zip *
262         rm -rf staged
263
264 licdist:
265         rm -rf share
266         $(mkinstalldirs) ./share/doc/${PACKAGE_TARNAME}
267         cd ./share/doc/${PACKAGE_TARNAME}; for file in $(LICENCE_FILES); \
268           do test -f ${abs_top_srcdir}/$$file \
269             && $(LN_S) ${abs_top_srcdir}/$$file . \
270             || $(LN_S) ${CURDIR}/$$file .; \
271           done
272         tar chf - share | $(TARZIP) -c > $(PACKAGE_DISTNAME)-lic.$(TAREXT)
273         rm -rf share
274
275 srcdist: srcdist-doc
276         rm -rf ${PACKAGE_DISTROOT} && mkdir ${PACKAGE_DISTROOT}
277         cd ${PACKAGE_DISTROOT}; for file in $(SRCDIST_FILES); do \
278           test -f ${abs_top_srcdir}/$$file \
279             && $(LN_S) ${abs_top_srcdir}/$$file . \
280             || $(LN_S) ../$$file .; \
281           done
282         for dir in $(SRCDIST_SUBDIRS); do \
283           $(mkinstalldirs) ${PACKAGE_DISTROOT}/$$dir \
284           && cd ${PACKAGE_DISTROOT}/$$dir; \
285           for file in `cd ${abs_top_srcdir}/$$dir && echo *`; do \
286             if test -f ${abs_top_srcdir}/$$dir/$$file; then \
287               $(LN_S) ${abs_top_srcdir}/$$dir/$$file .; \
288             fi; \
289           done; \
290         cd ${CURDIR}; done
291         cd ${PACKAGE_DISTROOT}/src/pkginfo; $(LN_S) ${CURDIR}/pkginfo.c .
292         tar chf - ${PACKAGE_DISTROOT} | $(TARZIP) -c > \
293           ${PACKAGE_DISTNAME}-src.$(TAREXT)
294         rm -rf ${PACKAGE_DISTROOT}
295
296 # README, INSTALL and NEWS files to be included in the source distribution
297 # are generated on demand, as indirect side effects of a set of phoney goals
298 # so that they are always regenerated for each distribution, from templates
299 # in srcdist-doc so that we can make them version specific.
300 #
301 vpath %.in ${srcdir}/srcdist-doc
302 srcdist-doc: README.dist NEWS.dist INSTALL.dist
303
304 # We need to ensure that, when we invoke nroff, the generated output
305 # will be suited to an ASCII class of typesetter; without the -Tascii
306 # option, GNU nroff will substitute Unicode hyphens (u2010) in place
307 # of ASCII hyphens (code 45).
308 #
309 NROFF = nroff -Tascii
310
311 %.dist: %.in gendoc.simple.sed
312         sed -f gendoc.simple.sed $< | $(NROFF) > $*
313
314 %.simple.sed: %.sed.in
315         sed -e s,'$${PACKAGE_DIRNAME}',"${PACKAGE_DISTROOT}", \
316             -e s,'$${PACKAGE_DISTNAME}',"${PACKAGE_DISTNAME}", $< > $@
317
318 %.combined.sed: %.sed.in
319         sed -e s,'$${PACKAGE_DIRNAME}',"${PACKAGE_DISTROOT}", \
320             -e s,'$${PACKAGE_DISTNAME}',"${PACKAGE_DISTNAME}", \
321             -e s,'^# *cut:',, $< > $@
322
323 # The following rules use sed and awk to match the RCS Id keyword;
324 # we define and use the following macro, in the form "$(DOLLAR)Id:",
325 # to avoid unwanted substitution on CVS checkout.
326 #
327 DOLLAR = $$
328
329 # The following rule provides a mechanism for generating a composite from
330 # README, INSTALL and NEWS, for use as an on-line package description.
331 #
332 readme.txt: gendoc.combined.sed readme.txt.tag readme.txt.in
333         sed s,'$(DOLLAR)Id:.*',"`cat $@.tag`", $@.in > $@
334         echo '$$Document: $@ $$: end of file' >> $@
335         rm -f gendoc.combined.sed $@.*
336
337 # There should be a new generation of readme.txt for each package release;
338 # since each release should also include an updated NEWS file; we adopt the
339 # ID tag-line from NEWS.in, as most the appropriate template for generation
340 # of a corresponding tag-line for readme.in
341 #
342 readme.txt.tag: NEWS.in
343         awk '/\$(DOLLAR)Id:/{ $$2 = "readme.txt\\,v"; print }' $^ > $@
344
345 # The tag-line generated by the preceding rule may then be substituted, by
346 # the primary readme.txt generation rule above, into the document template
347 # generated by the following rule
348 #
349 readme.txt.in: README.in NEWS.in INSTALL.in
350         rm -f $@
351         for input in $^; do \
352           sed -f gendoc.combined.sed $$input | $(NROFF) >> $@; \
353           done
354
355 # Workspace clean-up...
356 #
357 clean:
358         rm -f *.$(OBJEXT) *.d *.dll $(BIN_PROGRAMS) $(LIBEXEC_PROGRAMS)
359
360 distclean: clean
361         rm -f config.* version.c
362
363 maintainer-clean: distclean
364         rm -f README NEWS INSTALL readme.txt Makefile pkginfo.c
365         rm -f *-$(PACKAGE_DISTVERSION)-*.tar.* *-$(PACKAGE_DISTVERSION)-*.zip
366         rm -rf ${PACKAGE_DISTROOT} staged ${srcdir}/autom4te.cache
367
368 # $RCSfile$: end of file