diff test/samples/composite/makefile @ 0:3e629dc19168

initial from svn dyncall-1745
author Daniel Adler
date Thu, 19 Mar 2015 22:24:28 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/samples/composite/makefile	Thu Mar 19 22:24:28 2015 +0100
@@ -0,0 +1,14 @@
+TARGETS=args.s
+
+#CC=gcc-mp-4.7 
+#TARGET_ARCH=-march=corei7-avx 
+#TARGET_ARCH=-march=corei7-avx -mavx -msse2avx
+#-mno-vzeroupper
+CFLAGS=-O3 
+#-fomit-frame-pointer -fno-exceptions 
+# -fno-rtti
+all: ${TARGETS}
+clean:
+	rm -f ${TARGETS}
+.c.s:
+	${CC} -S $< -o $@ ${CFLAGS} ${TARGET_ARCH}