mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-10 06:42:26 +00:00
Makefile.am: Make the ChangeLog get generated, add static targets for zip
and bz2 dists. also, new dist-all-local target builds .tar.gz, .tar.bz2, and .zip dists. .zip dist does ASCII conversion.
This commit is contained in:
parent
583762ad4e
commit
9e6b097620
2 changed files with 26 additions and 3 deletions
27
Makefile.am
27
Makefile.am
|
@ -1,10 +1,33 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
AUTOMAKE_OPTIONS = foreign dist-zip
|
||||
AUTOMAKE_OPTIONS = foreign
|
||||
|
||||
SUBDIRS = include source doc
|
||||
|
||||
EXTRA_DIST = README.WIN newtree.dsw \
|
||||
EXTRA_DIST = README.WIN newtree.dsw ChangeLog \
|
||||
RPM/build_rpm.in RPM/quakeforge.spec.in \
|
||||
tools/gas2masm/Makefile tools/gas2masm/gas2masm.c \
|
||||
tools/gas2masm/gas2masm.dsp tools/gas2masm/gas2masm.dsw \
|
||||
tools/gas2masm/gas2masm.mak tools/gas2masm/gas2masm.mdp
|
||||
|
||||
bin_SCRIPTS = ChangeLog
|
||||
|
||||
ChangeLog:
|
||||
-touch ChangeLog
|
||||
-tools/cvs2cl/cvs2cl.pl
|
||||
|
||||
dist-zip: distdir
|
||||
-chmod -R a+r $(distdir)
|
||||
ZIP="-r9ql" zip $(distdir).zip $(distdir)
|
||||
-rm -rf $(distdir)
|
||||
|
||||
dist-bz2: distdir
|
||||
-chmod -R a+r $(distdir)
|
||||
BZIP2="-9" $(TAR) Ichof $(distdir).tar.bz2 $(distdir)
|
||||
-rm -rf $(distdir)
|
||||
|
||||
dist-all-local: distdir
|
||||
-chmod -R a+r $(distdir)
|
||||
GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
|
||||
BZIP2="-9" $(TAR) Ichof $(distdir).tar.bz2 $(distdir)
|
||||
ZIP="-r9ql" zip $(distdir).zip $(distdir)
|
||||
-rm -rf $(distdir)
|
||||
|
|
|
@ -6,7 +6,7 @@ AM_CONFIG_HEADER(include/config.h)
|
|||
AC_CANONICAL_SYSTEM
|
||||
|
||||
dnl This is the only place where the package version appears
|
||||
AM_INIT_AUTOMAKE(quakeforge, 0.2.99beta1)
|
||||
AM_INIT_AUTOMAKE(quakeforge, 0.2.99beta2)
|
||||
|
||||
dnl Define the proper name and extra version numbers for package
|
||||
PROGRAM=QuakeForge
|
||||
|
|
Loading…
Reference in a new issue