diff protoGenCheck/Makefile @ 8:37a10fd62ea9

add programs for prototype generation checking
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Sat, 21 Feb 2015 21:19:46 +0900
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/protoGenCheck/Makefile	Sat Feb 21 21:19:46 2015 +0900
@@ -0,0 +1,13 @@
+CC=/Users/e105711/prog/seminar/CbC/llvmInst/Debug+Asserts/bin/clang
+TARGET=noProtoFibonacci fibonacci
+
+.SUFFIXES: .c .o
+
+.c.o:
+	$(CC) -o $<
+
+all: $(TARGET)
+
+clean:
+	rm -f $(TARGET)
+	rm -f *.o