enable timer-win and getch2-win for mingw32

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9831 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
faust3 2003-04-04 19:33:18 +00:00
parent a8dd582c45
commit 3a6df1e21e
1 changed files with 13 additions and 4 deletions

View File

@ -3,7 +3,7 @@ include ../config.mak
LIBNAME = libosdep.a
SRCS=getch2.c shmem.c strsep.c vsscanf.c scandir.c # timer.c
SRCS= shmem.c strsep.c vsscanf.c scandir.c gettimeofday.c # timer.c
ifeq ($(TARGET_ARCH_X86),yes)
ifeq ($(TARGET_OS),Linux)
@ -11,11 +11,20 @@ SRCS += lrmi.c vbelib.c
endif
endif
getch = getch2.c
timer = timer-lx.c
ifeq ($(MACOSX),yes)
SRCS += timer-macosx.c
else
SRCS += timer-lx.c
timer = timer-macosx.c
endif
ifeq ($(TARGET_CYGWIN),yes)
timer = timer-win.c
endif
ifeq ($(TARGET_MINGW32),yes)
timer = timer-win.c
getch = getch2-win.c
endif
SRCS += $(timer)
SRCS += $(getch)
OBJS=$(SRCS:.c=.o)