view returnCheck/Makefile @ 1:456587e74f71

return.cbc -> return_cbc.cbc
author e085711
date Tue, 01 Mar 2011 04:35:34 +0900
parents 1dd1eac8b18f
children e9211e83b79d
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)