diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-04-07 10:05:23 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-04-07 10:05:23 +0000 |
commit | f8e17af0784064e99c6caf1c4d173a0855cff2ec (patch) | |
tree | 83d4f42d53d657dd15b3a9d6396464575b62325a | |
parent | e6a76361de2723093a77c790386d85bb4a45874d (diff) | |
download | xine-lib-f8e17af0784064e99c6caf1c4d173a0855cff2ec.tar.gz xine-lib-f8e17af0784064e99c6caf1c4d173a0855cff2ec.tar.bz2 |
Tired to remove some unwanted plugins?, put a post-install.sh script in the topdir, and let install process do it for you
CVS patchset: 4561
CVS date: 2003/04/07 10:05:23
-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 |