hack for "make install"

This commit is contained in:
albert 2002-10-12 07:31:30 +00:00
parent d9ff991a71
commit 1ef22d01d6

View File

@ -123,13 +123,15 @@ clean:
###### install ###### install
$(BINFILES) : $(@F) .PHONY: $(INSTALL) # FIXME
$(BINFILES) : #$(notdir $@)
$(install) --mode a=rx --strip $(notdir $@) $@ $(install) --mode a=rx --strip $(notdir $@) $@
$(SCRFILES) : $(@F) $(SCRFILES) : #$(notdir $@)
$(install) --mode a=rx $(notdir $@) $@ $(install) --mode a=rx $(notdir $@) $@
$(MANFILES) : $(@F) $(MANFILES) : #$(notdir $@)
$(install) --mode a=r $(notdir $@) $@ $(install) --mode a=r $(notdir $@) $@
install: $(INSTALL) install: $(INSTALL)