comparison sample/Makefile @ 0:075d70197fc2

add written files.
author taiki
date Sat, 02 Feb 2013 22:15:35 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:075d70197fc2
1 CC = cbc-gcc-4.6.0
2 CFLAGS = -O2 \
3 -Wall \
4 -g \
5 -c
6
7 TARGET = sample
8
9 $(TARGET) : sample.o
10
11 sample.o: sample.c
12 $(CC) $(CFLAGS) -o $@ $^
13
14 clean:
15 rm -r *.o $(TARGET)