Rev 216 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
###########################################################################
#
# mkEnv-cygwin.mk
#
# This file contains cygwin specific defines for the build environment.
#
# This file should only define variables and not have any rules in it.
#
###########################################################################
MK_ELF_EXT = .exe
MK_EXE_EXT = .exe
CFLAGS += -mno-cygwin
CXXFLAGS += -mno-cygwin
LDFLAGS += -mno-cygwin
MK_COMMON_MINGW_DIR = $(MK_COMMON_DIR)/mingw
vpath %.c $(MK_COMMON_MINGW_DIR)
vpath %.cpp $(MK_COMMON_MINGW_DIR)
# mingw gcc doesn't use rdynamic
LDFLAGS_RDYNAMIC =
include $(MK_RULES_DIR)/mkEnv-gcc.mk