From: janneke Date: Thu, 25 Sep 2003 08:52:02 +0000 (+0000) Subject: (omf-local-install): Buxfix: X-Git-Tag: release/2.1.3~69 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=017feb78ad58eee3ae9cfc7d725a3ee4bc9177e2;p=lilypond.git (omf-local-install): Buxfix: make omf directory, add uninstall targets. --- diff --git a/stepmake/stepmake/omf-targets.make b/stepmake/stepmake/omf-targets.make index 99be618d47..d35dea43e7 100644 --- a/stepmake/stepmake/omf-targets.make +++ b/stepmake/stepmake/omf-targets.make @@ -1,9 +1,16 @@ omf: $(OMF_FILES) +local-install: omf-local-install omf-local-install: $(OMF_FILES) + -$(INSTALL) -d $(local_package_omfdir) $(foreach a, $(OMF_FILES), $(INSTALL) -m 644 $(a) $(local_package_omfdir)/$(notdir $(a)) && ) true @echo "Run scrollkeeper-update to register newly installed OMF files." -local-install: omf-local-install +local-uninstall: omf-local-uninstall + +omf-local-uninstall: + rm -f $(foreach i, $(OMF_FILES), $(local_package_omfdir)/$(i)) + -rmdir $(local_package_omfdir) +