Rev 234 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
234 | dhylands | 1 | ########################################################################### |
2 | # |
||
3 | # mkEnv-cygwin.mk |
||
4 | # |
||
5 | # This file contains cygwin specific defines for the build environment. |
||
6 | # |
||
7 | # This file should only define variables and not have any rules in it. |
||
8 | # |
||
9 | ########################################################################### |
||
10 | |||
11 | MK_ELF_EXT = .exe |
||
12 | MK_EXE_EXT = .exe |
||
13 | |||
258 | dhylands | 14 | CPPFLAGS += -mno-cygwin |
234 | dhylands | 15 | LDFLAGS += -mno-cygwin |
16 | |||
17 | MK_COMMON_MINGW_DIR = $(MK_COMMON_DIR)/mingw |
||
18 | |||
258 | dhylands | 19 | CPPFLAGS += -I $(MK_COMMON_MINGW_DIR) |
20 | |||
234 | dhylands | 21 | vpath %.c $(MK_COMMON_MINGW_DIR) |
22 | vpath %.cpp $(MK_COMMON_MINGW_DIR) |
||
23 | |||
24 | # mingw gcc doesn't use rdynamic |
||
25 | LDFLAGS_RDYNAMIC = |
||
26 | |||
27 | include $(MK_RULES_DIR)/mkEnv-gcc.mk |