mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-10 06:42:26 +00:00
win32 builds from make dist
This commit is contained in:
parent
1b4ed8cc3f
commit
bf732cea77
1 changed files with 14 additions and 10 deletions
14
Makefile.am
14
Makefile.am
|
@ -1,15 +1,17 @@
|
|||
## 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 \
|
||||
tools/gas2masm/Makefile tools/gas2masm/gas2masm.c \
|
||||
tools/gas2masm/gas2masm.dsp tools/gas2masm/gas2masm.dsw \
|
||||
tools/gas2masm/gas2masm.mak tools/gas2masm/gas2masm.mdp \
|
||||
tools/zpak
|
||||
|
||||
NOCONV_DIST= $(distdir)/include/win32/resources/icon1.ico
|
||||
|
||||
changelog::
|
||||
-touch ChangeLog
|
||||
-tools/cvs2cl/cvs2cl.pl -b
|
||||
|
@ -17,7 +19,8 @@ changelog::
|
|||
|
||||
dist-zip: 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)
|
||||
|
||||
dist-bz2: distdir
|
||||
|
@ -29,5 +32,6 @@ 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)
|
||||
ZIP="-r9q" zip $(distdir).zip $(NOCONV_DIST)
|
||||
ZIP="-r9ql" zip $(distdir).zip $(distdir) -x $(NOCONV_DIST)
|
||||
-rm -rf $(distdir)
|
||||
|
|
Loading…
Reference in a new issue