From 34a0116da88c5309ea08215872291a79b5483b30 Mon Sep 17 00:00:00 2001 From: musil Date: Fri, 10 Nov 2006 17:16:29 +0000 Subject: makefiles -fno-strict-aliasing flag some new objects float to t_float no #pragma svn path=/trunk/externals/iem/iem_tab/; revision=6262 --- src/makefile_linux | 84 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 src/makefile_linux (limited to 'src/makefile_linux') diff --git a/src/makefile_linux b/src/makefile_linux new file mode 100644 index 0000000..cb8b982 --- /dev/null +++ b/src/makefile_linux @@ -0,0 +1,84 @@ +current: all + +.SUFFIXES: .pd_linux + +INCLUDE = -I. -I/usr/local/src/pd/src + +LDFLAGS = -export-dynamic -shared +LIB = -ldl -lm + +#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 -fno-strict-aliasing \ + -DDL_OPEN -fPIC + +SYSTEM = $(shell uname -m) + +# the sources + +SRC = tab_abs.c \ + tab_add.c \ + tab_add_scalar.c \ + tab_carth2polar.c \ + tab_complex_inv.c \ + tab_complex_mul.c \ + tab_const.c \ + tab_conv.c \ + tab_copy.c \ + tab_counter.c \ + tab_cross_corr.c \ + tab_div.c \ + tab_eq.c \ + tab_eq_scalar.c \ + tab_fft.c \ + tab_find_exact_peaks.c \ + tab_find_peaks.c \ + tab_ge.c \ + tab_ge_scalar.c \ + tab_gt.c \ + tab_gt_scalar.c \ + tab_ifft.c \ + tab_le.c \ + tab_le_scalar.c \ + tab_lt.c \ + tab_lt_scalar.c \ + tab_max_index.c \ + tab_min_index.c \ + tab_min_max.c \ + tab_mul.c \ + tab_mul_scalar.c \ + tab_ne.c \ + tab_ne_scalar.c \ + tab_reverse.c \ + tab_rfft.c \ + tab_rifft.c \ + tab_sqrt.c \ + tab_sub.c \ + tab_sum.c \ + iem_tab.c + +TARGET = iem_tab.pd_linux + + +OBJ = $(SRC:.c=.o) + +# +# ------------------ targets ------------------------------------ +# + +clean: + rm $(TARGET) + rm *.o + +all: $(OBJ) + @echo :: $(OBJ) + $(LD) $(LDFLAGS) -o $(TARGET) *.o $(LIB) + strip --strip-unneeded $(TARGET) + +$(OBJ) : %.o : %.c + $(CC) $(CFLAGS) $(INCLUDE) -c -o $*.o $*.c + + + + -- cgit v1.2.1