From fba49a1a60999c162079af4b6af6e9bdb1cdea02 Mon Sep 17 00:00:00 2001 From: fred Date: Thu, 13 Aug 1998 20:40:44 +0000 Subject: [PATCH] lilypond-1.0.4 --- stepmake/stepmake/install-outfiles.make | 15 +++++++++++++++ stepmake/stepmake/installfiles.make | 15 +++++++++++++++ stepmake/stepmake/manual.make | 15 +++++++++++++++ 3 files changed, 45 insertions(+) create mode 100644 stepmake/stepmake/install-outfiles.make create mode 100644 stepmake/stepmake/installfiles.make create mode 100644 stepmake/stepmake/manual.make diff --git a/stepmake/stepmake/install-outfiles.make b/stepmake/stepmake/install-outfiles.make new file mode 100644 index 0000000000..b4f2539f8c --- /dev/null +++ b/stepmake/stepmake/install-outfiles.make @@ -0,0 +1,15 @@ +# Initial_outfiles.make + +localinstall: localinstall-files + +localinstall-files: $(INSTALLATION_OUT_FILES) + -$(INSTALL) -d $(INSTALLATION_OUT_DIR) + $(foreach i, $(INSTALLATION_OUT_FILES), \ + $(INSTALL) -m 644 $(i) $(INSTALLATION_OUT_DIR) && )true + +localuninstall: localuninstall-files + +localuninstall-files: + $(foreach i, $(notdir $(INSTALLATION_OUT_FILES)), \ + rm -f $(INSTALLATION_OUT_DIR)/$(i) && ) true + -rmdir $(INSTALLATION_OUT_DIR) diff --git a/stepmake/stepmake/installfiles.make b/stepmake/stepmake/installfiles.make new file mode 100644 index 0000000000..58d10e30cf --- /dev/null +++ b/stepmake/stepmake/installfiles.make @@ -0,0 +1,15 @@ +# Installfiles.make + +localinstall: localinstall-files + +localinstall-files: + -$(INSTALL) -d $(INSTALLATION_DIR) + $(foreach i, $(INSTALLATION_FILES),\ + $(INSTALL) -m 644 $(i) $(INSTALLATION_DIR) &&)true + +localuninstall: localuninstall-files + +localuninstall-files: + $(foreach i, $(INSTALLATION_FILES),\ + rm -f $(INSTALLATION_DIR)/$(i) && ) true + -rmdir $(INSTALLATION_DIR) diff --git a/stepmake/stepmake/manual.make b/stepmake/stepmake/manual.make new file mode 100644 index 0000000000..0e6206dabf --- /dev/null +++ b/stepmake/stepmake/manual.make @@ -0,0 +1,15 @@ +# Manual.make + +MANGROFF = $(addprefix $(outdir)/, $(addsuffix .$(SECTION))) + +localinstall: $(MANGROFFS) + -$(INSTALL) -d $(mandir)/man$(SECTION) + $(INSTALL) -m 644 $(MANGROFFS) $(mandir)/man$(SECTION) + + +localuninstall: + (cd $(mandir)/man$(SECTION)/; rm -f $(MANGROFF)) + + + + -- 2.39.5