Mercurial > hg > Members > taiki > Mach-OLoader
view sample/Makefile @ 0:075d70197fc2
add written files.
author | taiki |
---|---|
date | Sat, 02 Feb 2013 22:15:35 +0900 |
parents | |
children |
line wrap: on
line source
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)