diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-11-14 18:17:29 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-11-14 18:17:29 +0000 |
commit | 22e2a8c435e6907aae8fb43c54341f8ec55e6231 (patch) | |
tree | 657b6a62954ba90dfd77fa4b55c96ff705cf60f6 /src/iemlib2/makefile | |
parent | cc8ea374e396a623e2c3e690c8e8efc47e0a1cbb (diff) |
moved most logic from individual makefiles into Make.include
svn path=/trunk/externals/iemlib/; revision=3892
Diffstat (limited to 'src/iemlib2/makefile')
-rw-r--r-- | src/iemlib2/makefile | 87 |
1 files changed, 1 insertions, 86 deletions
diff --git a/src/iemlib2/makefile b/src/iemlib2/makefile index 8febf1f..19e7f63 100644 --- a/src/iemlib2/makefile +++ b/src/iemlib2/makefile @@ -1,89 +1,4 @@ -current: all +TARGET = iemlib2 -.SUFFIXES: .pd_linux include ../../Make.include -INCLUDE = -I. -I$(PDSOURCE) - -LDFLAGS = -export-dynamic -shared -LIB = -ldl -lm -lpthread - -#select either the DBG and OPT compiler flags below: - -CFLAGS = -DPD -DUNIX -W -Werror -Wno-unused \ - -Wno-parentheses -Wno-switch -O6 -funroll-loops -fomit-frame-pointer \ - -DDL_OPEN -fPIC - -SYSTEM = $(shell uname -m) - -# the sources - -SRC = add2_comma.c \ - bpe.c \ - dollarg.c \ - exp_inc.c \ - float24.c \ - iem_anything_kernel.c \ - iem_anything.c \ - iem_append_kernel.c \ - iem_append.c \ - iem_i_route.c \ - iem_pbank_csv.c \ - iem_prepend_kernel.c \ - iem_prepend.c \ - iem_receive_kernel.c \ - iem_receive.c \ - iem_route.c \ - iem_sel_any.c \ - iem_send_kernel.c \ - iem_send.c \ - init.c \ - list2send.c \ - mergefilename.c \ - modulo_counter.c \ - parentdollarzero.c \ - post_netreceive.c \ - pre_inlet.c \ - prepend_ascii.c \ - protect_against_open.c \ - receive2list.c \ - round_zero.c \ - sigfade.c \ - sigiem_blocksize.c \ - sigiem_samplerate.c \ - sigLFO_noise.c \ - sigm2f.c \ - speedlim.c \ - splitfilename.c \ - stripfilename.c \ - toggle_mess.c \ - transf_fader.c \ - unsymbol.c \ - wrap.c \ - iemlib2.c - -TARGET = iemlib2.pd_linux - - -OBJ = $(SRC:.c=.o) - -# -# ------------------ targets ------------------------------------ -# - -clean: - -rm ../../lib/$(TARGET) $(TARGET) - -rm *.o - -all: $(OBJ) - @echo :: $(OBJ) - ld $(LDFLAGS) -o $(TARGET) *.o $(LIB) - strip --strip-unneeded $(TARGET) - cp $(TARGET) ../../lib - -$(OBJ) : %.o : %.c - cc $(CFLAGS) $(INCLUDE) -c -o $*.o $*.c - - - - |