diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-07-12 18:18:31 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-07-12 18:18:31 +0000 |
commit | b8b0a6c8f9382bfde9e85aa52c59715a237591bc (patch) | |
tree | dac7564d1d8ddab57c3b381e78237575ac4e683a /Makeconf | |
parent | ca0b55aad54e319556177d67fd83c5ee551a41b0 (diff) |
(install) [doinst==one || doinst==many]: Include file-specific options
in call to INSTALL_PROGRAM.
Diffstat (limited to 'Makeconf')
-rw-r--r-- | Makeconf | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -131,14 +131,14 @@ ifeq ($(doinst),one) all: $(target) install: $(installationdir)/$(target) $(installationdir) $(installationdir)/$(target): $(target) - $(INSTALL_PROGRAM) $< $@ + $(INSTALL_PROGRAM) $(INSTALL-$@-ops) $< $@ endif ifeq ($(doinst),many) all: $(targets) install: $(addprefix $(installationdir)/,$(targets)) $(installationdir) $(addprefix $(installationdir)/,$(targets)): $(installationdir)/%: % - $(INSTALL_PROGRAM) $< $@ + $(INSTALL_PROGRAM) $(INSTALL-$@-ops) $< $@ endif ifeq ($(makemode),library) |