Based on the original Rocket Workbench on SourceForge in CVS at: https://sourceforge.net/projects/rocketworkbench
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
171 B

CC = gcc
ifeq ($(TYPE),"debug")
COPT = -g -Wall
else
ifeq ($(TYPE),"profile")
COPT = -g -Wall -O -pg
else
COPT = -g -Wall -O
endif
endif
#COPT += -ansi