Makefile: Apply patch for Gentoo sandbox compliance.

This commit is contained in:
Jonathan Moore Liles 2008-09-05 17:36:43 -05:00
parent 211e45bc1b
commit ab3f1037ef
1 changed files with 7 additions and 6 deletions

View File

@ -108,15 +108,16 @@ non-sequencer: $(OBJS)
install: all
@ echo -n "Installing..."
@ install non-sequencer $(prefix)/bin
@ mkdir -p "$(SYSTEM_PATH)"
@ cp -r instruments "$(SYSTEM_PATH)"
@ mkdir -p "$(DOCUMENT_PATH)"
@ cp doc/*.html doc/*.png "$(DOCUMENT_PATH)"
@ install -d $(DESTDIR)$(prefix)/bin
@ install -m 755 non-sequencer $(DESTDIR)$(prefix)/bin
@ install -d "$(DESTDIR)$(SYSTEM_PATH)/instruments"
@ install -m 644 instruments/* "$(DESTDIR)$(SYSTEM_PATH)/instruments"
@ install -d "$(DESTDIR)$(DOCUMENT_PATH)"
@ install -m 644 doc/*.html doc/*.png "$(DESTDIR)$(DOCUMENT_PATH)"
@ echo "$(DONE)"
ifneq ($(USE_DEBUG),yes)
@ echo -n "Stripping..."
@ strip $(prefix)/bin/non-sequencer
@ strip $(DESTDIR)$(prefix)/bin/non-sequencer
@ echo "$(DONE)"
endif