diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-04-28 23:31:28 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-04-28 23:31:28 +0000 |
commit | 069838e936c13ced0e381d19a883b68a1022428e (patch) | |
tree | 58e72c94318d1f49832ae6f721193d2e4f7701ed | |
parent | e2a712bae148436fa99b0a34ec8937cda7bb8cd7 (diff) |
added iem16 targets, but they are not auto included yet because of compilation issues
svn path=/trunk/; revision=5033
-rw-r--r-- | externals/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/externals/Makefile b/externals/Makefile index 048bd81c..2ff68b4b 100644 --- a/externals/Makefile +++ b/externals/Makefile @@ -806,6 +806,40 @@ iem_tab_clean: #------------------------------------------------------------------------------# +# IEM16 +IEM16_NAME=iem16 +IEM16_OBJECTS := $(wildcard $(externals_src)/iem16/src/iem16_*.c) +iem16: $(IEM16_OBJECTS:.c=.$(EXTENSION)) + +iem16_install: iem16 + install -d $(objectsdir)/$(IEM16_NAME) + $(scripts_src)/generate-libdir-metafile.sh $(objectsdir) $(IEM16_NAME) \ + --author "IOhannes m zmoelnig" \ + --description "16bit objects for low memory usage" \ + --license "GNU GPL" \ + --version "0.1" + install -p $(IEM16_OBJECTS:.c=.$(EXTENSION)) $(objectsdir)/$(IEM16_NAME) +# install -d $(helpdir)/$(IEM16_NAME) +# install -p $(externals_src)/iem16/help/*.pd \ +# $(helpdir)/$(IEM16_NAME) +# install -d $(manualsdir)/$(IEM16_NAME) +# install -p $(externals_src)/iem16/manual.txt \ +# $(manualsdir)/$(IEM16_NAME) +# install -p $(externals_src)/iem16/README \ +# $(readmesdir)/$(IEM16_NAME).txt + install -d $(examplesdir)/$(IEM16_NAME) + install -p $(externals_src)/iem16/examples/*.pd \ + $(examplesdir)/$(IEM16_NAME) + +iem16_clean: + -rm -f -- $(IEM16_OBJECTS:.c=.$(EXTENSION)) + -rm -f -- $(IEM16_OBJECTS:.c=.o) + -rm -f -- $(externals_src)/iem16/*.bak + -rm -f -- $(externals_src)/iem16/*.*~ + + + +#------------------------------------------------------------------------------# # IEMLIB IEMLIB_NAME=iemlib IEMLIB_OBJECTS := $(wildcard $(externals_src)/iemlib/src/*/[a-hj-rt-z]*.c) |