1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
SUBDIRS = $(TOPSUBDIRS)
THIS=Makefile.am
$(top_srcdir)/arson.spec: arson.spec.in VERSION $(THIS)
ARSON_VERSION=`sed -e "s/arson v//" VERSION`;\
echo '*** Creating arson.spec';\
sed -e "s/@VERSION@/$$ARSON_VERSION/" arson.spec.in >arson.spec
$(top_srcdir)/README: DESCRIPTION VERSION FEATURES REQUIREMENTS
echo '*** Creating README';\
./util mkreadme
$(top_srcdir)/index.html: index.tmpl VERSION DESCRIPTION FEATURES REQUIREMENTS
echo '*** Creating index.html';\
./util mkhomepage
$(top_srcdir)/subdirs:
cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common subdirs
$(top_srcdir)/acinclude.m4: $(top_srcdir)/admin/acinclude.m4.in $(top_srcdir)/admin/libtool.m4.in
@cd $(top_srcdir) && cat admin/acinclude.m4.in admin/libtool.m4.in > acinclude.m4
MAINTAINERCLEANFILES = subdirs configure.in acinclude.m4 configure.files
package-messages:
$(MAKE) -f admin/Makefile.common package-messages
$(MAKE) -C po merge
EXTRA_DIST = admin
dist-hook:
cd $(top_distdir) && perl admin/am_edit -padmin
cd $(top_distdir) && $(MAKE) -f admin/Makefile.common subdirs
|