Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 1066 → Rev 1073

/shark/trunk/config/config.mk
59,11 → 59,19
CFG_VIDEO_OPT += -DCONFIG_FB_VGA16
endif
 
ifeq ($(findstring GCC4,$(COMPILER)) , GCC4)
# this options are for newer gcc4 compilers
C_WARN = -Wimplicit-function-declaration -Wno-attributes -Wno-pointer-sign -Wall
# in case of problems with older gcc versions, please
# comment the previous line and uncomment the following line
# C_WARN = -Wimplicit-function-declaration -Wall
endif
 
ifeq ($(findstring GCC3,$(COMPILER)) , GCC3)
C_WARN = -Wimplicit-function-declaration -Wall
endif
 
ifeq ($(findstring DJGPP,$(COMPILER)) , DJGPP)
C_WARN = -Wimplicit-function-declaration -Wall
endif
 
C_FLAGS = -O -fno-builtin -nostdinc -minline-all-stringops
C_INC = $(INCL) $(OTHERINCL) -I$(OSLIB)
C_MAC = $(CFG_OPT)