aboutsummaryrefslogtreecommitdiff
path: root/externals/iem/eval_sizeof/src/makefile_d_fat
diff options
context:
space:
mode:
authormusil <tmusil@users.sourceforge.net>2011-06-29 16:45:36 +0000
committermusil <tmusil@users.sourceforge.net>2011-06-29 16:45:36 +0000
commit070ded6a9b6552458c8f96c07d7887f6a072d2d4 (patch)
tree935fde1f65d50ea1915bd43a71a86846907d0b84 /externals/iem/eval_sizeof/src/makefile_d_fat
parentffd0e3c8430d9a5edf2f71aefb262829278d8e51 (diff)
initial ci of evaluate size of data types
svn path=/trunk/; revision=15120
Diffstat (limited to 'externals/iem/eval_sizeof/src/makefile_d_fat')
-rw-r--r--externals/iem/eval_sizeof/src/makefile_d_fat42
1 files changed, 42 insertions, 0 deletions
diff --git a/externals/iem/eval_sizeof/src/makefile_d_fat b/externals/iem/eval_sizeof/src/makefile_d_fat
new file mode 100644
index 00000000..a238a825
--- /dev/null
+++ b/externals/iem/eval_sizeof/src/makefile_d_fat
@@ -0,0 +1,42 @@
+current: all
+
+.SUFFIXES: .d_fat
+
+PD_INSTALL_PATH ?= "/Applications/Pd.app/Contents/Resources"
+
+INCLUDE = -I. -I$(PD_INSTALL_PATH)/src
+
+CFLAGS =-DPD -O2 -Wall -W -Wshadow -Wstrict-prototypes \
+ -Wno-unused -Wno-parentheses -Wno-switch
+
+LFLAGS = -bundle -undefined suppress -flat_namespace
+
+# the sources
+
+SRC = eval_sizeof.c
+
+TARGET = eval_sizeof.d_fat
+
+
+OBJ = $(SRC:.c=.o)
+
+#
+# ------------------ targets ------------------------------------
+#
+
+clean:
+ rm ../$(TARGET)
+ rm *.o
+
+all: $(OBJ)
+ @echo :: $(OBJ)
+ $(CC) -arch i386 -arch ppc $(LFLAGS) -o $(TARGET) *.o
+ strip -S -x $(TARGET)
+ mv $(TARGET) ..
+
+$(OBJ) : %.o : %.c
+ $(CC) -arch i386 -arch ppc $(CFLAGS) $(INCLUDE) -c -o $*.o $*.c
+
+
+
+