From 017feb78ad58eee3ae9cfc7d725a3ee4bc9177e2 Mon Sep 17 00:00:00 2001 From: janneke Date: Thu, 25 Sep 2003 08:52:02 +0000 Subject: [PATCH] (omf-local-install): Buxfix: make omf directory, add uninstall targets. --- stepmake/stepmake/omf-targets.make | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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) + -- 2.39.5