comparison osdep/Makefile @ 12706:51d61721906b

mingw crosscompiling step 1
author faust3
date Sun, 27 Jun 2004 17:54:31 +0000
parents 9a495bdc3a1e
children c0bde085511c
comparison
equal deleted inserted replaced
12705:8188e7aa570a 12706:51d61721906b
15 getch = getch2.c 15 getch = getch2.c
16 timer = timer-lx.c 16 timer = timer-lx.c
17 ifeq ($(TARGET_OS),Darwin) 17 ifeq ($(TARGET_OS),Darwin)
18 timer = timer-darwin.c 18 timer = timer-darwin.c
19 endif 19 endif
20 ifeq ($(TARGET_CYGWIN),yes) 20 ifeq ($(TARGET_OS),CYGWIN)
21 timer = timer-win2.c 21 timer = timer-win2.c
22 endif 22 endif
23 ifeq ($(TARGET_MINGW32),yes) 23 ifeq ($(TARGET_OS),MINGW32)
24 timer = timer-win2.c 24 timer = timer-win2.c
25 getch = getch2-win.c 25 getch = getch2-win.c
26 SRCS += glob-win.c 26 SRCS += glob-win.c
27 endif 27 endif
28 SRCS += $(timer) 28 SRCS += $(timer)