diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-08-09 23:14:23 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-08-09 23:14:23 +0000 |
commit | 31147eef8e52d65c692b61b7e30881b84658325b (patch) | |
tree | d539f7b702fee3a3a657817c1f659685f559ad85 /externals | |
parent | 5c74c569f4e1da55860d945a286d31912130144c (diff) |
the iemmatrix libdir doesn't work properly. I removed the ugly kludge from the build targets and removed iemmatrix from the default build. These objects still compile in the 'flatspace' libdir
svn path=/trunk/; revision=5543
Diffstat (limited to 'externals')
-rw-r--r-- | externals/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/externals/Makefile b/externals/Makefile index 1f5697a2..5c557b5a 100644 --- a/externals/Makefile +++ b/externals/Makefile @@ -111,7 +111,7 @@ CXXFLAGS = $(CFLAGS) # # WARNING! this MUST be all on one line because the automatic package # building scripts rely on it being that way. -LIB_TARGETS = boids bsaylor corelibs creb cxc cyclone ekext ext13 flatspace flib freeverb ggee hardware hcs iem_ambi iem_bin_ambi iemlib iemmatrix loaders mapping markex maxlib mjlib motex oscx pan pddp pdogg pmpd sigpack smlib toxy unauthorized vbap zexy +LIB_TARGETS = boids bsaylor corelibs creb cxc cyclone ekext ext13 flatspace flib freeverb ggee hardware hcs iem_ambi iem_bin_ambi iemlib loaders mapping markex maxlib mjlib motex oscx pan pddp pdogg pmpd sigpack smlib toxy unauthorized vbap zexy # this is for libraries that don't compile (yet) on all platforms ifeq ($(OS_NAME),windows) @@ -1187,9 +1187,10 @@ iemlib_clean: #------------------------------------------------------------------------------# # IEMMATRIX IEMMATRIX_NAME=iemmatrix +IEMMATRIX_SOURCES := $(wildcard $(externals_src)/iem/iemmatrix/src/mtx_*.c) IEMMATRIX_OBJECTS := $(wildcard $(externals_src)/iem/iemmatrix/src/mtx_*.c) IEMMATRIX_VERSION := $(shell echo $(externals_src)/iem/iemmatrix/VERSION.txt) -iemmatrix: $(IEMMATRIX_OBJECTS:.c=.$(EXTENSION)) +iemmatrix: $(IEMMATRIX_OBJECTS:.c=.o) iemmatrix_install: iemmatrix |