Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 598 → Rev 597

/shark/trunk/config/config.mk
16,7 → 16,12
LIBRARYDIR= $(LIB_PATH)
LIBRARYOBJS= $(LIB_OBJS)
 
CFG_OPT = -D__LINUX__
ifeq ($(findstring LINUX,$(ENV)) , LINUX)
CFG_OPT += -D__LINUX__
endif
ifeq ($(findstring DJGPP,$(ENV)) , DJGPP)
CFG_OPT += -D__GNU__
endif
 
ifeq ($(TSC),TRUE)
CFG_OPT += -D__TSC__
30,10 → 35,8
endif
 
ifeq ($(findstring NEW,$(TRACER)) , NEW)
ifeq ($(TSC),TRUE)
CFG_OPT += -D__NEW_TRACER__
endif
endif
ifeq ($(findstring OLD,$(TRACER)) , OLD)
CFG_OPT += -D__OLD_TRACER__
endif