view returnCheck/Makefile @ 3:e9211e83b79d

update return_cbc.cbc
author e085711
date Tue, 01 Mar 2011 04:38:41 +0900
parents 456587e74f71
children 3b02b3b26cfe
line wrap: on
line source

# 
# Makefile
#

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

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

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