2001-02-20 03:10:06 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
AUTOMAKE_OPTIONS= foreign
|
|
|
|
|
2010-08-07 07:22:31 +00:00
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
|
2010-11-29 05:26:33 +00:00
|
|
|
SUBDIRS=RPM debian desktop doc include libs hw nq qtv qw tools ruamoko \
|
2010-12-06 12:24:49 +00:00
|
|
|
pkg-config vc2005 vc2008
|
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
|
2010-12-23 07:48:40 +00:00
|
|
|
EXTRA_DIST= ChangeLog configure.ac bootstrap \
|
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 \
|
2004-02-02 06:15:22 +00:00
|
|
|
tools/gas2masm/gas2masm.mak tools/gas2masm/gas2masm.mdp
|
2001-02-20 03:10:06 +00:00
|
|
|
|
2010-12-23 23:32:17 +00:00
|
|
|
NOCONV_DIST= $(distdir)/include/win32/resources/icon1Vista.ico \
|
|
|
|
$(distdir)/include/win32/resources/icon1XP.ico
|
2001-04-18 07:18:54 +00:00
|
|
|
|
2010-08-23 07:21:30 +00:00
|
|
|
changelog: ChangeLog
|
|
|
|
ChangeLog: FORCE
|
2010-08-23 07:43:05 +00:00
|
|
|
@if test -d "$(top_srcdir)/.git"; then \
|
2010-08-23 07:21:30 +00:00
|
|
|
echo "creating ChangeLog" && \
|
|
|
|
( cd "$(top_srcdir)" && \
|
|
|
|
echo 'This file is generated by Makefile; do not edit.'; \
|
|
|
|
echo; \
|
2010-08-23 07:43:05 +00:00
|
|
|
./missing --run git log --abbrev-commit --stat --no-merges \
|
2010-08-23 07:21:30 +00:00
|
|
|
) > $(top_builddir)/ChangeLog; \
|
|
|
|
else \
|
|
|
|
echo 'A git clone is required to generate ChangeLog' >&2; \
|
|
|
|
fi
|
|
|
|
|
2001-04-18 07:18:54 +00:00
|
|
|
dist-zip: distdir
|
|
|
|
-chmod -R a+r $(distdir)
|
|
|
|
ZIP="-r9q" zip $(distdir).zip $(NOCONV_DIST)
|
2010-12-23 23:32:17 +00:00
|
|
|
-rm -f $(NOCONV_DIST)
|
|
|
|
ZIP="-r9ql" zip $(distdir).zip $(distdir)
|
2001-04-18 07:18:54 +00:00
|
|
|
-rm -rf $(distdir)
|
|
|
|
|
|
|
|
dist-bz2: distdir
|
|
|
|
-chmod -R a+r $(distdir)
|
2002-09-30 20:34:16 +00:00
|
|
|
$(AMTAR) -cho $(distdir) | bzip2 -9 > $(distdir).tar.bz2
|
2001-04-18 07:18:54 +00:00
|
|
|
-rm -rf $(distdir)
|
|
|
|
|
|
|
|
dist-all-local: distdir
|
|
|
|
-chmod -R a+r $(distdir)
|
2002-09-30 20:34:16 +00:00
|
|
|
GZIP=$(GZIP_ENV) $(AMTAR) chozf $(distdir).tar.gz $(distdir)
|
|
|
|
$(AMTAR) -cho $(distdir) | bzip2 -9 > $(distdir).tar.bz2
|
2001-04-18 07:18:54 +00:00
|
|
|
ZIP="-r9q" zip $(distdir).zip $(NOCONV_DIST)
|
2010-12-23 23:32:17 +00:00
|
|
|
-rm -f $(NOCONV_DIST)
|
|
|
|
ZIP="-r9ql" zip $(distdir).zip $(distdir)
|
2001-04-18 07:18:54 +00:00
|
|
|
-rm -rf $(distdir)
|
2010-08-23 07:21:30 +00:00
|
|
|
|
|
|
|
FORCE:
|