diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2007-01-09 09:11:07 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2007-01-09 09:11:07 +0000 |
commit | f723e97c0b1cd6674650776690781863e0e6804f (patch) | |
tree | 3a194c09142de9ee1ce386a995d4babd737aceba /Makefile | |
parent | c9f75af8acdcd7ec9575c7c5c0ba96489489736b (diff) |
updated to match the new layout of iemlib
svn path=/trunk/externals/iemlib/; revision=7240
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -17,7 +17,7 @@ INSTALL_DOC=$(PREFIX)/extra/iemhelp iemlibs: $(IEMLIBS) $(IEMLIBS): - $(MAKE) -C src/$@ + $(MAKE) -C $@/src install: install-bin install-doc install-abs @@ -27,7 +27,11 @@ install-bin: install-doc: -install -d ${INSTALL_DOC} - -install -m 644 iemhelp/*.pd $(INSTALL_DOC) + -for d in ${IEMLIBS}; do \ + for e in pd wav; do \ + install -m644 $$d/*.$$e $(INSTALL_DOC); \ + done; \ + done install-abs: -install -d ${INSTALL_BIN} @@ -35,5 +39,5 @@ install-abs: clean: for d in ${IEMLIBS}; do \ - ${MAKE} -C src/$$d clean; \ + ${MAKE} -C $$d/src clean; \ done |