diff options
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 4662ba30f..81bf51c8d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -51,6 +51,7 @@ install-debug: debug @list='$(SUBDIRS)'; for subdir in $$list; do \ (cd $$subdir && $(MAKE) $@) || exit; \ done; + $(MAKE) $(AM_MAKEFLAGS) install-data-hook prune-cache: @@ -62,10 +63,16 @@ release-check: misc/relchk.sh @./autogen.sh && $(SHELL) misc/relchk.sh @mv -f .cvsversion.tmp .cvsversion + slackbuild: @(cd misc && $(MAKE) SlackBuild) && \ PREFIX="/usr" misc/SlackBuild + +install-data-hook: + @if [ -f "$(top_srcdir)/post-install.sh" ]; then $(top_srcdir)/post-install.sh; fi + + mostlyclean-generic: -rm -f *~ \#* .*~ .\#* -rm -f $(PACKAGE)_$(VERSION).tar.gz |