Browse Source

Makefile: Apply patch for Gentoo sandbox compliance.

tags/non-sequencer-v1.9.4
Jonathan Moore Liles 16 years ago
parent
commit
ab3f1037ef
1 changed files with 7 additions and 6 deletions
  1. +7
    -6
      Makefile

+ 7
- 6
Makefile 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



Loading…
Cancel
Save