Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 361 → Rev 362

/shark/trunk/config/mk/gnu.mk
13,13 → 13,6
endif
endif
 
ifeq ($(findstring NEW,$(TRACER)) , NEW)
CFG_OPT += -D__NEW_TRACER__
endif
ifeq ($(findstring OLD,$(TRACER)) , OLD)
CFG_OPT += -D__OLD_TRACER__
endif
 
INCL = $(BASE)/include
LIB_PATH = $(BASE)/lib
OSLIB = $(BASE)/oslib
34,6 → 27,15
#LIBRARYDIR= $(subst /,\,$(LIB_PATH))
#LIBRARYOBJS= $(subst /,\,$(LIB_OBJS))
 
ifeq ($(findstring NEW,$(TRACER)) , NEW)
CFG_OPT += -D__NEW_TRACER__
INCL += -I$(BASE)/tracer/include
endif
ifeq ($(findstring OLD,$(TRACER)) , OLD)
CFG_OPT += -D__OLD_TRACER__
INCL += -I$(BASE)/tracer/include
endif
 
C_WARN = -Wimplicit-function-declaration -Wall
C_FLAGS = -O -fno-builtin -nostdinc
C_INC = -I$(INCL) $(OTHERINCL) -I$(OSLIB)