diff sample/Makefile @ 0:075d70197fc2

add written files.
author taiki
date Sat, 02 Feb 2013 22:15:35 +0900
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sample/Makefile	Sat Feb 02 22:15:35 2013 +0900
@@ -0,0 +1,15 @@
+CC = cbc-gcc-4.6.0
+CFLAGS = -O2 \
+		-Wall \
+		-g \
+		-c
+
+TARGET = sample
+
+$(TARGET) : sample.o
+
+sample.o: sample.c
+	$(CC) $(CFLAGS) -o $@ $^
+
+clean:
+	rm -r *.o $(TARGET)