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 = $(WHICH_SMF) m4 doc actions pixmaps po src \
fonts soundfonts
dist_sysconf_DATA = denemo.conf
EXTRA_DIST = actions/menus doc/DESIGN doc/GOALS @PACKAGE@.spec.in \
doc/DESIGN.lilypond actions include \
guile-1.8.pc \
examples templates
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure config.h.in \
stamp-h.in \
config.guess mkinstalldirs \
missing install-sh config.sub \
acinclude.m4 config.log \
depcomp
install-data-hook:
cp -r $(srcdir)/actions ${DESTDIR}/$(datadir)/${PACKAGE}/
find $(DESTDIR)$(datadir)/${PACKAGE}/actions -type d -exec chmod 755 '{}' \;
find $(DESTDIR)$(datadir)/${PACKAGE}/examples -type f \( -name Makefile -o -name Makefile.in \
-o -name Makefile.am \) -print0 | xargs -0 rm -rf \;
cp -r $(srcdir)/examples ${DESTDIR}/$(datadir)/${PACKAGE}/
find $(DESTDIR)$(datadir)/${PACKAGE}/examples -type d -exec chmod 755 '{}' \;
find $(DESTDIR)$(datadir)/${PACKAGE}/examples -type f \( -name Makefile -o -name Makefile.in \
-o -name Makefile.am \) -print0 | xargs -0 rm -rf \;
cp -r $(srcdir)/templates ${DESTDIR}/$(datadir)/${PACKAGE}/
find $(DESTDIR)$(datadir)/${PACKAGE}/templates -type d -exec chmod 755 '{}' \;
find $(DESTDIR)$(datadir)/${PACKAGE}/templates -type f \( -name Makefile -o -name Makefile.in \
-o -name Makefile.am \) -print0 | xargs -0 rm -rf \;
dist-hook: @PACKAGE@.spec
cp $(srcdir)/@PACKAGE@.spec $(distdir)
ACLOCAL_AMFLAGS = -I m4
|