view returnCheck/Makefile~ @ 2:e0fdef113de4

test
author nobuyasu
date Tue, 01 Mar 2011 04:37:40 +0900
parents 456587e74f71
children
line wrap: on
line source

# 
# Makefile
#

program = return
objs = return.o
#CC = gcc
CC = ~/hg/CbC/build-gcc/INSTALL_DIR/bin/gcc
CFLAGS = -O0 -g

$(program): $(objs)
	$(CC) -o $(program) $^
$(objs): $(program).c
	$(CC) $(CFLAGS) -c $<

clean:
	rm -rf $(program) $(objs)