win32 builds from make dist

This commit is contained in:
Bill Currie 2000-11-08 23:57:47 +00:00
parent 1b4ed8cc3f
commit bf732cea77
1 changed files with 14 additions and 10 deletions

View File

@ -1,14 +1,16 @@
## Process this file with automake to produce Makefile.in ## Process this file with automake to produce Makefile.in
AUTOMAKE_OPTIONS = foreign AUTOMAKE_OPTIONS= foreign
SUBDIRS = include source doc SUBDIRS= include source doc
EXTRA_DIST = README.WIN newtree.dsw ChangeLog \ EXTRA_DIST= README.WIN newtree.dsw ChangeLog \
RPM/build_rpm.in RPM/quakeforge.spec.in \ RPM/build_rpm.in RPM/quakeforge.spec.in \
tools/gas2masm/Makefile tools/gas2masm/gas2masm.c \ tools/gas2masm/Makefile tools/gas2masm/gas2masm.c \
tools/gas2masm/gas2masm.dsp tools/gas2masm/gas2masm.dsw \ tools/gas2masm/gas2masm.dsp tools/gas2masm/gas2masm.dsw \
tools/gas2masm/gas2masm.mak tools/gas2masm/gas2masm.mdp \ tools/gas2masm/gas2masm.mak tools/gas2masm/gas2masm.mdp \
tools/zpak tools/zpak
NOCONV_DIST= $(distdir)/include/win32/resources/icon1.ico
changelog:: changelog::
-touch ChangeLog -touch ChangeLog
@ -17,7 +19,8 @@ changelog::
dist-zip: distdir dist-zip: distdir
-chmod -R a+r $(distdir) -chmod -R a+r $(distdir)
ZIP="-r9ql" zip $(distdir).zip $(distdir) ZIP="-r9q" zip $(distdir).zip $(NOCONV_DIST)
ZIP="-r9ql" zip $(distdir).zip $(distdir) -x $(NOCONV_DIST)
-rm -rf $(distdir) -rm -rf $(distdir)
dist-bz2: distdir dist-bz2: distdir
@ -29,5 +32,6 @@ dist-all-local: distdir
-chmod -R a+r $(distdir) -chmod -R a+r $(distdir)
GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir) GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
BZIP2="-9" $(TAR) Ichof $(distdir).tar.bz2 $(distdir) BZIP2="-9" $(TAR) Ichof $(distdir).tar.bz2 $(distdir)
ZIP="-r9ql" zip $(distdir).zip $(distdir) ZIP="-r9q" zip $(distdir).zip $(NOCONV_DIST)
ZIP="-r9ql" zip $(distdir).zip $(distdir) -x $(NOCONV_DIST)
-rm -rf $(distdir) -rm -rf $(distdir)