2001-02-20 03:10:06 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
AUTOMAKE_OPTIONS= foreign
|
|
|
|
|
2002-08-16 22:58:44 +00:00
|
|
|
SUBDIRS= RPM debian doc include libs qw nq tools ruamoko
|
2001-02-20 03:10:06 +00:00
|
|
|
|
2001-09-04 21:00:08 +00:00
|
|
|
## configure.ac needs to be listed here for older autoconfs
|
|
|
|
EXTRA_DIST= ChangeLog configure.ac \
|
2001-05-22 19:13:23 +00:00
|
|
|
tools/cross/cross-configure.sh tools/cross/cross-make.sh \
|
|
|
|
tools/cross/cross.sh \
|
2001-02-20 03:10:06 +00:00
|
|
|
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
|
|
|
|
|
|
|
|
changelog::
|
2001-06-08 00:27:41 +00:00
|
|
|
( cd $(top_srcdir); \
|
2002-08-19 03:30:27 +00:00
|
|
|
tools/cvs2cl/cvs2cl.pl --stdout -b --utc -S --no-wrap) > ChangeLog
|
2001-04-18 07:18:54 +00:00
|
|
|
|
|
|
|
NOCONV_DIST= $(distdir)/include/win32/resources/icon1.ico
|
|
|
|
|
|
|
|
dist-zip: distdir
|
|
|
|
-chmod -R a+r $(distdir)
|
|
|
|
ZIP="-r9q" zip $(distdir).zip $(NOCONV_DIST)
|
|
|
|
ZIP="-r9ql" zip $(distdir).zip $(distdir) -x $(NOCONV_DIST)
|
|
|
|
-rm -rf $(distdir)
|
|
|
|
|
|
|
|
dist-bz2: distdir
|
|
|
|
-chmod -R a+r $(distdir)
|
|
|
|
$(TAR) -cho $(distdir) | bzip2 -9 > $(distdir).tar.bz2
|
|
|
|
-rm -rf $(distdir)
|
|
|
|
|
|
|
|
dist-all-local: distdir
|
|
|
|
-chmod -R a+r $(distdir)
|
|
|
|
GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
|
|
|
|
$(TAR) -cho $(distdir) | bzip2 -9 > $(distdir).tar.bz2
|
|
|
|
ZIP="-r9q" zip $(distdir).zip $(NOCONV_DIST)
|
|
|
|
ZIP="-r9ql" zip $(distdir).zip $(distdir) -x $(NOCONV_DIST)
|
|
|
|
-rm -rf $(distdir)
|