summaryrefslogtreecommitdiffstats
path: root/osdep/Makefile
diff options
context:
space:
mode:
authorfaust3 <faust3@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-04-25 10:00:18 +0000
committerfaust3 <faust3@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-04-25 10:00:18 +0000
commit0015a97826319e469e1614932749ab315f28f0fb (patch)
treefa380ac0d15245da7e539c2b41aee5fcc76f4d16 /osdep/Makefile
parent472539ae252638f18f38628adb059cfd53958e2a (diff)
downloadmpv-0015a97826319e469e1614932749ab315f28f0fb.tar.bz2
mpv-0015a97826319e469e1614932749ab315f28f0fb.tar.xz
alternative timer and glob emulation code for mingw32 port
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9984 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'osdep/Makefile')
-rw-r--r--osdep/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/osdep/Makefile b/osdep/Makefile
index c1a1c4da69..808f2e3e7b 100644
--- a/osdep/Makefile
+++ b/osdep/Makefile
@@ -17,11 +17,12 @@ ifeq ($(MACOSX),yes)
timer = timer-macosx.c
endif
ifeq ($(TARGET_CYGWIN),yes)
-timer = timer-win.c
+timer = timer-win2.c
endif
ifeq ($(TARGET_MINGW32),yes)
-timer = timer-win.c
+timer = timer-win2.c
getch = getch2-win.c
+SRCS += glob-win.c
endif
SRCS += $(timer)
SRCS += $(getch)