OSDN Git Service

Rework defective assignment of product version resources.
[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-2013, 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 = `test -f build.tag && cat build.tag`
34 DEBUGLEVEL = @DEBUGLEVEL@
35
36 # Establish the appropriate mechanism for invoking 'make' recursively,
37 # WITHOUT incurring the noise of its "Entering directory..." messages.
38 #
39 QUIET_MAKE = $(MAKE)@NO_PRINT_DIRECTORY@
40 @SET_MAKE@
41
42 # Establish source code directory organisation, and set reference
43 # paths for access to source files.
44 #
45 srcdir = @srcdir@
46 abs_top_srcdir = @abs_top_srcdir@
47
48 vpath %.ico @srcdir@/icons
49 VPATH = @top_srcdir@/src:@top_srcdir@/src/pkginfo:@top_srcdir@/tinyxml
50
51 # Identify common build tools, and set their default options.
52 #
53 CC = @CC@
54 CFLAGS = @CFLAGS@
55 CPPFLAGS = @CPPFLAGS@ -D DEBUGLEVEL=$(DEBUGLEVEL) $(INCLUDES)
56
57 CXX = @CXX@
58 CXXFLAGS = $(CFLAGS)
59
60 INCLUDES = -I ${srcdir}/src -I ${srcdir}/src/pkginfo -I ${srcdir}/tinyxml
61
62 AR = @AR@
63 ARFLAGS = @ARFLAGS@
64
65 # A 'lex' compatible LALR(1) scanner is required for SCM sourced builds,
66 # or if the user modifies any 'lex' source.  This AC_PROG_LEX compatible
67 # macro set facilitates the handling of any situation where 'lex' is not
68 # available, but is required to complete the build.
69 #
70 LEX = @LEX@
71 LEX_COMMAND = $(LEX) $(LFLAGS) -t $< > $(LEX_OUTPUT)
72 LEX_COMMAND_ABORT = { $(LEX_MISSING); rm -f $(LEX_OUTPUT); exit 2; }
73 LEX_MISSING = (echo; echo $(LEX_MISSING_MESSAGE); echo) | $(FORMAT_MESSAGE)
74 LEX_MISSING_MESSAGE = "I cannot find the program 'lex' on your system; \
75 it is required because you either do not have the file '$@', or you appear \
76 to have modified the file '$<'.  If neither of these is the case, then you \
77 may wish to update the time stamp of '$@', so that it appears to be newer \
78 than '$<', before you run make again."
79 LEX_OUTPUT = @LEX_OUTPUT_ROOT@.c
80
81 # The following macro uses 'awk' to emulate a rudimentary 'nroff' filter,
82 # for formatting notification messages, such as those which are emitted to
83 # report the above "missing 'lex'" condition.
84
85 FORMAT_MESSAGE = awk '\
86   BEGIN       { $(AWK_CLEAR_LINE_BUFFER) }\
87   /^\. *br$$/ { $(AWK_PRINT_AND_CLEAR_BUFFER) }\
88   NF == 0     { $(AWK_COLLECT_BLANK_LINE) }\
89   /^[^.]/     { $(AWK_COLLECT_MESSAGE) }\
90   END         { $(AWK_FLUSH_LINE_BUFFER) }'
91
92 # Establish a default line length for formatting messages.
93 #
94 MESSAGE_FOLD_WIDTH = 68
95
96 # The following macros implement the internals of the message formatter.
97 #
98 AWK_CLEAR_LINE_BUFFER = linebuf = "";
99 AWK_FLUSH_LINE_BUFFER = if( linebuf != "" ){ $(AWK_PRINT_AND_CLEAR_BUFFER) }
100 AWK_PRINT_AND_CLEAR_BUFFER = $(AWK_PRINT_LINE_BUFFER) $(AWK_CLEAR_LINE_BUFFER)
101 AWK_COLLECT_MESSAGE = \
102   for( i = 0; i < NF; ) \
103   { if( linebuf == "" ) newbuf = $$++i; else \
104     { newbuf = linebuf; \
105       if( match( linebuf, "[.!?]$$" ) ) newbuf = newbuf " "; \
106       newbuf = newbuf " " $$++i; \
107     } \
108     if( length( newbuf ) > $(MESSAGE_FOLD_WIDTH) ) \
109     { print linebuf; \
110       linebuf = $$i; \
111     } \
112     else linebuf = newbuf; \
113   }
114 AWK_COLLECT_BLANK_LINE = $(AWK_FLUSH_LINE_BUFFER) $(AWK_PRINT_LINE_BUFFER)
115 AWK_PRINT_LINE_BUFFER = print linebuf; 
116
117 # Identify an appropriate resource compiler, for GUI builds,
118 # and define a set of script macros to propagate the build-time
119 # specific package meta-data into compiled resource modules.
120 #
121 RC = @RC@
122 RC_SCRIPT = tag=$(BUILD_TAG); \
123   test "x$$tag" != x && tag="-$(GUI_RELEASE_CLASS)-$$tag"; \
124     $(TAG_SCRIPT)
125
126 VERSION_SCRIPT = tag=$(BUILD_TAG); \
127   test "x$$tag" != x && tag="-$(CLI_RELEASE_CLASS)-$$tag"; \
128     $(TAG_SCRIPT)
129
130 TAG_SCRIPT = sed \
131   -e "s!%PACKAGE_NAME%!$(PACKAGE_TARNAME)!g" \
132   -e "s!%PACKAGE_VERSION%!$(PACKAGE_VERSION)$$tag!g" \
133   -e "s!%PACKAGE_VERINFO_PRODUCT_VERSION%!`$(PACKAGE_VERINFO_SCRIPT)`!g" \
134   -e "s!%COPYRIGHT_HOLDER%!@COPYRIGHT_HOLDER@!g" \
135   -e "s!%YEARS_OF_ISSUE%!@YEARS_OF_ISSUE@!g"
136
137 PACKAGE_VERINFO_SCRIPT = \
138   echo $(PACKAGE_VERSION) | awk -F. '{ \
139     printf "%d, %d, ", $$1, $$2 * 100 + $$3 \
140   }'; (test "x$$tag" = x && date +%Y%m%d-0 || echo $$tag) | awk -F- '{ \
141     DF = NF - 1; printf "%d, %d", (( substr( $$DF, 1, 4 ) - 1970 ) * 16 \
142       + substr( $$DF, 5, 2 )) * 32 + substr( $$DF, 7, 2 ), $$NF \
143   }'
144
145 RC_INCLUDES = -I . -I ${srcdir}/src -I ${srcdir}/icons
146
147 # Specify extensions, and link-time requirements, for binary
148 # package deliverables.
149 #
150 OBJEXT = @OBJEXT@
151 EXEEXT = @EXEEXT@
152
153 LDFLAGS = @LDFLAGS@
154 GUI_LDFLAGS = -mwindows $(LDFLAGS)
155 LIBS = -Wl,-Bstatic -llua -lz -lbz2 -llzma -Wl,-Bdynamic -lwininet
156
157 # Define the content of package deliverables.
158 #
159 CORE_DLL_OBJECTS  =  climain.$(OBJEXT) pkgshow.$(OBJEXT) dmhcore.$(OBJEXT) \
160    pkgbind.$(OBJEXT) pkginet.$(OBJEXT) pkgstrm.$(OBJEXT) pkgname.$(OBJEXT) \
161    pkgexec.$(OBJEXT) pkgfind.$(OBJEXT) pkginfo.$(OBJEXT) pkgspec.$(OBJEXT) \
162    pkgopts.$(OBJEXT) sysroot.$(OBJEXT) pkghash.$(OBJEXT) pkgkeys.$(OBJEXT) \
163    pkgdeps.$(OBJEXT) pkgreqs.$(OBJEXT) pkginst.$(OBJEXT) pkgunst.$(OBJEXT) \
164    tarproc.$(OBJEXT) xmlfile.$(OBJEXT) keyword.$(OBJEXT) vercmp.$(OBJEXT) \
165    tinyxml.$(OBJEXT) tinystr.$(OBJEXT) tinyxmlparser.$(OBJEXT) \
166    apihook.$(OBJEXT) mkpath.$(OBJEXT)  tinyxmlerror.$(OBJEXT)
167
168 CLI_EXE_OBJECTS  =   \
169    clistub.$(OBJEXT) version.$(OBJEXT) approot.$(OBJEXT) getopt.$(OBJEXT)
170
171 GUIMAIN_OBJECTS  =   \
172    guimain.$(OBJEXT) guiexec.$(OBJEXT) dmhguix.$(OBJEXT) \
173    approot.$(OBJEXT) pkgview.$(OBJEXT) pkgtree.$(OBJEXT) pkglist.$(OBJEXT) \
174    pkgdata.$(OBJEXT) pkgnget.$(OBJEXT) guimain.res.$(OBJEXT)
175
176 GUIMAIN_LIBS = -lwtklite -lcomctl32
177
178 script_srcdir = ${srcdir}/scripts/libexec
179
180 BIN_PROGRAMS = pkginfo$(EXEEXT) mingw-get$(EXEEXT)
181 LIBEXEC_PROGRAMS = guistub$(EXEEXT) guimain$(EXEEXT) lastrites$(EXEEXT)
182 LIBEXEC_SCRIPTS = ${script_srcdir}/setup.lua ${script_srcdir}/wsh.lua \
183    ${script_srcdir}/shlink.js ${script_srcdir}/unlink.js
184 LIBEXEC_DATA = mingw-get-0.dll
185
186 # Primary build goals...
187 #
188 all: $(BIN_PROGRAMS) $(LIBEXEC_PROGRAMS) $(LIBEXEC_DATA)
189
190 pkginfo$(EXEEXT):  driver.$(OBJEXT) pkginfo.$(OBJEXT)
191         $(CC) -o $@ $(CFLAGS) $(LDFLAGS) $+
192
193 mingw-get$(EXEEXT): $(CLI_EXE_OBJECTS)
194         $(CXX) -o $@ $(CXXFLAGS) $(LDFLAGS) $+
195
196 guistub$(EXEEXT): guistub.$(OBJEXT) pkgicon.$(OBJEXT)
197         $(CXX) -o $@ $(CXXFLAGS) $(GUI_LDFLAGS) $+
198
199 guimain$(EXEEXT): $(GUIMAIN_OBJECTS) $(LIBEXEC_DATA)
200         $(CXX) -o $@ $(CXXFLAGS) $(GUI_LDFLAGS) $+ $(GUIMAIN_LIBS)
201
202 lastrites$(EXEEXT): rites.$(OBJEXT)
203         $(CC) -o $@ $(CFLAGS) $(GUI_LDFLAGS) $+
204
205 mingw-get-0.dll: $(CORE_DLL_OBJECTS)
206         $(CXX) -shared -o $@ $(CXXFLAGS) $(LDFLAGS) $+ $(LIBS)
207
208 # The following recursive invocation hook provides a mechanism for
209 # accessing make's facility for reporting what it is doing, even when
210 # the command to be invoked is encapsulated within a more complex block,
211 # which has been marked for explicit silent execution; usage is:
212 #
213 #   $(WITH_REQUEST)='command to be executed' execute-command
214 #
215 # (with no intervening white space around the assignment operator, and
216 #  ensuring that the command to be executed is appropriately quoted).
217 #
218 WITH_REQUEST = $(QUIET_MAKE) COMMAND
219 execute-command:
220         $(COMMAND)
221
222 # Compilation and dependency tracking...
223 #
224 DEPFLAGS = -MMD -MP
225 RC_DEPFLAGS = -MM -MP -MD -MF $*.res.x
226 sinclude *.d
227
228 %.c: %.l
229         @test x$(LEX) = x: \
230           && { $(QUIET_MAKE) LEX=lex $(@F) || $(LEX_COMMAND_ABORT); } \
231           || $(WITH_REQUEST)='$(LEX_COMMAND)' execute-command
232         @test -f $(LEX_OUTPUT) && test -n "`cat $(LEX_OUTPUT)`" \
233           && $(WITH_REQUEST)='mv $(LEX_OUTPUT) $(@F)' execute-command \
234           || $(WITH_REQUEST)='rm -f $(LEX_OUTPUT)' execute-command
235
236 %.$(OBJEXT): %.c
237         $(CC) $(DEPFLAGS) -c $(CPPFLAGS) $(CFLAGS) -o $@ $<
238
239 %.$(OBJEXT): %.cpp
240         $(CXX) $(DEPFLAGS) -c $(CPPFLAGS) $(CXXFLAGS) -o $@ $<
241
242 %.res.$(OBJEXT): %.rc
243         $(CC) $(RC_DEPFLAGS) $(RC_INCLUDES) -DRC_INVOKED -xc-header $<
244         sed 's,$*\.$(OBJEXT):,$@:,' $*.res.x > $*.res.d; rm -f $*.res.x
245         $(RC_SCRIPT) $< | $(RC) $(RC_INCLUDES) -o $@
246
247 %.$(OBJEXT): %.ico
248         echo $* ICON $*.ico | $(RC) -I ${srcdir}/icons -o $@
249
250 # Release tagging; note that, whereas %.time is nominally updated as
251 # a side effect of %.tag, we also must provide an explicit rule which
252 # will update it directly.  This ensures that we may INDIRECTLY force
253 # a dependency on the TIME when %.tag is updated, WITHOUT creating an
254 # explicit dependency on %.tag itself.
255 #
256 time-stamp:
257 %.time:; > $@
258 %.tag: time-stamp
259         >> $@; tag=`date +%Y%m%d`; \
260           tag=`awk -F- -v today=$$tag ' \
261             BEGIN { tag = 1 } $$1 == today { tag += $$2 } \
262             END { print today "-" tag }' $@`; \
263           echo $$tag > $@
264         > $*.time
265
266 %.c: %.c.in
267         $(VERSION_SCRIPT) $< > $@
268
269 %.h: %.h.in
270         $(VERSION_SCRIPT) $< > $@
271
272 # The following dependencies must be explicitly declared.
273 #
274 guimain.res.$(OBJEXT): Makefile build.time verinfo.h
275 verinfo.h version.c: Makefile build.time
276
277 # Installation tools and directory paths...
278 #
279 mkinstalldirs = @MKDIR_P@
280
281 prefix = @prefix@
282 exec_prefix = @exec_prefix@
283 localstatedir = @localstatedir@
284 libexecdir = @libexecdir@
285 bindir = @bindir@
286
287 PACKAGE_CONFIG_DIR = ${localstatedir}/lib/${PACKAGE_TARNAME}/data
288
289 INSTALL = @INSTALL@
290 INSTALL_DATA = @INSTALL_DATA@
291 INSTALL_PROGRAM = @INSTALL_PROGRAM@
292 INSTALL_SCRIPT = @INSTALL_SCRIPT@
293
294 STRIP = @STRIP@
295 LN_S = @LN_S@
296
297 # Installation rules...
298 #
299 installdirs:
300         $(mkinstalldirs) ${bindir}
301         $(mkinstalldirs) ${libexecdir}/${PACKAGE_TARNAME}
302         $(mkinstalldirs) ${PACKAGE_CONFIG_DIR}
303
304 install: installdirs install-profile
305         for image in $(BIN_PROGRAMS); do \
306           $(INSTALL_PROGRAM) $$image ${bindir}; \
307           done
308         for image in $(LIBEXEC_PROGRAMS); do \
309           $(INSTALL_PROGRAM) $$image ${libexecdir}/${PACKAGE_TARNAME}; \
310           done
311         for image in $(LIBEXEC_DATA) $(LIBEXEC_SCRIPTS); do \
312           $(INSTALL_DATA) $$image ${libexecdir}/${PACKAGE_TARNAME}; \
313           done
314
315 install-profile:
316         $(INSTALL_DATA) ${srcdir}/xml/profile.xml \
317           ${PACKAGE_CONFIG_DIR}/defaults.xml
318
319 install-strip: install
320         for image in $(BIN_PROGRAMS); do \
321           $(STRIP) ${bindir}/$$image; \
322           done
323         for image in $(LIBEXEC_PROGRAMS) $(LIBEXEC_DATA); do \
324           $(STRIP) ${libexecdir}/${PACKAGE_TARNAME}/$$image; \
325           done
326
327 # Packaging and distribution...
328 # "Native" source files, (i.e. those specific to mingw-get), are...
329 #
330 LICENCE_FILES = README COPYING
331 SRCDIST_FILES = $(LICENCE_FILES) ChangeLog NEWS INSTALL \
332   aclocal.m4 configure.ac configure Makefile.in
333
334 # ...plus the entire content of the sub-directories...
335 #
336 SRCDIST_SUBDIRS = src src/pkginfo srcdist-doc icons \
337   scripts/libexec tinyxml xml
338
339 # In addition to the native sources for mingw-get, our source distribution
340 # must include a filtered subset of those additional files which we import
341 # from the project's global build-aux repository...
342 #
343 BUILD_AUX_DIRS = build-aux build-aux/m4
344 BUILD_AUX_FILES = config.guess config.sub install-sh missing.m4
345
346 # The names of distributed package archive files incorporate version
347 # information, derived from PACKAGE_VERSION; this is decomposed, so that
348 # the PACKAGE_SUBSYSTEM may be interposed between the principal version
349 # number and any qualifying suffix, which specifies development status.
350 # Additionally, the package maintainer may specify, (at `make dist' time),
351 # a SNAPSHOT qualifier; if specified, this will be appended, (literally),
352 # to the principal version number component of the package version number,
353 # as it appears in the distributed archive file names.
354 #
355 PACKAGE_DISTROOT = $(PACKAGE_TARNAME)-$(PACKAGE_ROOTVERSION)
356 PACKAGE_ROOTVERSION = `echo $(PACKAGE_VERSION) | sed 's,-[^0-9].*,,'`
357 PACKAGE_DISTVERSION = `echo $(PACKAGE_VERSION)-$(PACKAGE_SUBSYSTEM) | sed \
358   -e 's,-[^0-9],-$(PACKAGE_SUBSYSTEM)&,' \
359   -e 's,\(-$(PACKAGE_SUBSYSTEM).*\)-$(PACKAGE_SUBSYSTEM),\1,' \
360   -e 's,-$(PACKAGE_SUBSYSTEM),$(SNAPSHOT)&,'`
361 PACKAGE_DISTNAME = $(PACKAGE_TARNAME)-$(PACKAGE_DISTVERSION)
362
363 dist: srcdist bindist readme.txt.dist
364
365 # Specify where distributable files should be collected; by default,
366 # we will simply use the current build directory.
367 #
368 distdir = @abs_builddir@
369
370 # "Install" distributable text files into the distribution directory.
371 #
372 %.txt.dist: %.txt
373         cmp -s $< ${distdir}/$(<F) 2>/dev/null || $(INSTALL_DATA) $< ${distdir}
374
375 # Specify default compression command, and associated file name extension,
376 # for creation and identification of packaged tar archives.
377 #
378 TARZIP = xz
379 TAREXT = tar.$(TARZIP)
380
381 # The following macros facilitate the inclusion of SCM build tags within
382 # the generated names for the release tarballs; the GCMTAG macro is used
383 # to identify explicitly GUI components, while SCMTAG is used otherwise.
384 #
385 BLDTAG =  @abs_top_builddir@/build.tag
386 SCMTAG = `>> $(BLDTAG); cat $(BLDTAG) | sed 's,.,-$(CLI_RELEASE_CLASS)-&,'`
387 GCMTAG = `>> $(BLDTAG); cat $(BLDTAG) | sed 's,.,-$(GUI_RELEASE_CLASS)-&,'`
388
389 bindist: all licdist
390         rm -rf staged
391         $(mkinstalldirs) ${distdir}
392         $(MAKE) --no-print-directory prefix=`pwd`/staged install-strip
393         cd staged; tar chf - bin/pkginfo$(EXEEXT) | $(TARZIP) -c > \
394           ${distdir}/pkginfo-$(PACKAGE_DISTVERSION)$(SCMTAG)-bin.$(TAREXT)
395         rm staged/bin/pkginfo$(EXEEXT)
396         cd staged; tar chf - libexec/mingw-get/guimain$(EXEEXT) | \
397           $(TARZIP) -c > ${distdir}/$(PACKAGE_DISTNAME)$(GCMTAG)-gui.$(TAREXT)
398         rm staged/libexec/mingw-get/guimain$(EXEEXT)
399         cd staged; tar chf - * | $(TARZIP) -c > \
400           ${distdir}/$(PACKAGE_DISTNAME)$(SCMTAG)-bin.$(TAREXT)
401         cd staged; zip -r ${distdir}/$(PACKAGE_DISTNAME)$(SCMTAG)-bin.zip *
402         rm -rf staged
403
404 licdist:
405         rm -rf share
406         $(mkinstalldirs) ${distdir} ./share/doc/${PACKAGE_TARNAME}
407         cd ./share/doc/${PACKAGE_TARNAME}; for file in $(LICENCE_FILES); \
408           do test -f ${abs_top_srcdir}/$$file \
409             && $(LN_S) ${abs_top_srcdir}/$$file . \
410             || $(LN_S) ${CURDIR}/$$file .; \
411           done
412         tar chf - share | $(TARZIP) -c > \
413           ${distdir}/$(PACKAGE_DISTNAME)$(SCMTAG)-lic.$(TAREXT)
414         rm -rf share
415
416 srcdist: srcdist-doc pkginfo.c
417         rm -rf ${PACKAGE_DISTROOT}
418         $(mkinstalldirs) ${distdir} ${PACKAGE_DISTROOT}
419         cd ${PACKAGE_DISTROOT}; for file in $(SRCDIST_FILES); do \
420           test -f ${abs_top_srcdir}/$$file \
421             && $(LN_S) ${abs_top_srcdir}/$$file . \
422             || $(LN_S) ../$$file .; \
423           done
424         for dir in $(SRCDIST_SUBDIRS); do \
425           $(mkinstalldirs) ${PACKAGE_DISTROOT}/$$dir \
426           && cd ${PACKAGE_DISTROOT}/$$dir; \
427           for file in `cd ${abs_top_srcdir}/$$dir && echo *`; do \
428             if test -f ${abs_top_srcdir}/$$dir/$$file; then \
429               $(LN_S) ${abs_top_srcdir}/$$dir/$$file .; \
430             fi; \
431           done; \
432         cd ${CURDIR}; done
433         for dir in $(BUILD_AUX_DIRS); do \
434           $(mkinstalldirs) ${PACKAGE_DISTROOT}/$$dir \
435           && cd ${PACKAGE_DISTROOT}/$$dir; \
436           for file in $(BUILD_AUX_FILES); do \
437             if test -f ${abs_top_srcdir}/$$dir/$$file; then \
438               $(LN_S) ${abs_top_srcdir}/$$dir/$$file .; \
439             fi; \
440           done; \
441         cd ${CURDIR}; done
442         cd ${PACKAGE_DISTROOT}/src/pkginfo; $(LN_S) ${CURDIR}/pkginfo.c .
443         tar chf - ${PACKAGE_DISTROOT} | $(TARZIP) -c > \
444           ${distdir}/$(PACKAGE_DISTNAME)$(SCMTAG)-src.$(TAREXT)
445         rm -rf ${PACKAGE_DISTROOT}
446
447 # README, INSTALL and NEWS files to be included in the source distribution
448 # are generated on demand, as indirect side effects of a set of phoney goals
449 # so that they are always regenerated for each distribution, from templates
450 # in srcdist-doc so that we can make them version specific.
451 #
452 vpath %.in ${srcdir}/srcdist-doc
453 srcdist-doc: README.dist NEWS.dist INSTALL.dist
454
455 # We need to ensure that, when we invoke nroff, the generated output
456 # will be suited to an ASCII class of typesetter; without the -Tascii
457 # option, GNU nroff will substitute Unicode hyphens (u2010) in place
458 # of ASCII hyphens (code 45).
459 #
460 NROFF = nroff -Tascii
461
462 %.dist: %.in gendoc.simple.sed
463         sed -f gendoc.simple.sed $< | $(NROFF) > $*
464
465 %.simple.sed: %.sed.in
466         sed -e s,'$${PACKAGE_DIRNAME}',"${PACKAGE_DISTROOT}", \
467             -e s,'$${PACKAGE_DISTNAME}',"${PACKAGE_DISTNAME}", $< > $@
468
469 %.combined.sed: %.sed.in
470         sed -e s,'$${PACKAGE_DIRNAME}',"${PACKAGE_DISTROOT}", \
471             -e s,'$${PACKAGE_DISTNAME}',"${PACKAGE_DISTNAME}", \
472             -e s,'^# *cut:',, $< > $@
473
474 # The following rules use sed and awk to match the RCS Id keyword;
475 # we define and use the following macro, in the form "$(DOLLAR)Id:",
476 # to avoid unwanted substitution on CVS checkout.
477 #
478 DOLLAR = $$
479
480 # The following rule provides a mechanism for generating a composite from
481 # README, INSTALL and NEWS, for use as an on-line package description.
482 #
483 readme.txt: gendoc.combined.sed readme.txt.tag readme.txt.in
484         sed s,'$(DOLLAR)Id:.*',"`cat $@.tag`", $@.in > $@
485         echo '$$Document: $@ $$: end of file' >> $@
486         rm -f gendoc.combined.sed $@.*
487
488 # There should be a new generation of readme.txt for each package release;
489 # since each release should also include an updated NEWS file; we adopt the
490 # ID tag-line from NEWS.in, as most the appropriate template for generation
491 # of a corresponding tag-line for readme.in
492 #
493 readme.txt.tag: NEWS.in
494         awk '/\$(DOLLAR)Id:/{ $$2 = "readme.txt\\,v"; print }' $^ > $@
495
496 # The tag-line generated by the preceding rule may then be substituted, by
497 # the primary readme.txt generation rule above, into the document template
498 # generated by the following rule
499 #
500 readme.txt.in: README.in NEWS.in INSTALL.in
501         rm -f $@
502         for input in $^; do \
503           sed -f gendoc.combined.sed $$input | $(NROFF) >> $@; \
504           done
505
506 # Workspace clean-up...
507 #
508 clean:
509         rm -f *.$(OBJEXT) *.d *.dll $(BIN_PROGRAMS) $(LIBEXEC_PROGRAMS)
510
511 distclean: clean
512         rm -f config.* version.c build.tag build.time
513
514 maintainer-clean: distclean
515         rm -f README NEWS INSTALL readme.txt Makefile pkginfo.c
516         rm -f *-$(PACKAGE_DISTVERSION)-*.tar.* *-$(PACKAGE_DISTVERSION)-*.zip
517         rm -rf ${PACKAGE_DISTROOT} staged ${srcdir}/autom4te.cache
518
519 # $RCSfile$: end of file