2001-10-24 07:34:41 +00:00
|
|
|
|
|
|
|
include ../config.mak
|
|
|
|
|
|
|
|
LIBNAME = libosdep.a
|
|
|
|
|
2006-03-25 10:38:37 +00:00
|
|
|
SRCS= shmem.c \
|
|
|
|
strsep.c \
|
|
|
|
strl.c \
|
|
|
|
vsscanf.c \
|
|
|
|
scandir.c \
|
|
|
|
gettimeofday.c \
|
|
|
|
fseeko.c \
|
|
|
|
swab.c \
|
|
|
|
setenv.c \
|
2006-11-25 01:22:20 +00:00
|
|
|
mmap_anon.c \
|
2001-10-24 07:34:41 +00:00
|
|
|
|
2006-11-27 13:42:36 +00:00
|
|
|
SRCS-$(MACOSX_FINDER_SUPPORT) += macosx_finder_args.c
|
|
|
|
SRCS-$(TARGET_WIN32) += mplayer-rc.c
|
|
|
|
|
2003-04-04 19:33:18 +00:00
|
|
|
getch = getch2.c
|
|
|
|
timer = timer-lx.c
|
2006-11-25 09:49:18 +00:00
|
|
|
ifeq ($(TARGET_WIN32),yes)
|
2006-11-27 11:19:49 +00:00
|
|
|
timer = timer-win2.c
|
2006-11-25 09:49:18 +00:00
|
|
|
endif
|
2003-05-21 21:18:29 +00:00
|
|
|
ifeq ($(TARGET_OS),Darwin)
|
|
|
|
timer = timer-darwin.c
|
2003-02-19 17:22:02 +00:00
|
|
|
endif
|
2004-06-27 17:54:31 +00:00
|
|
|
ifeq ($(TARGET_OS),MINGW32)
|
2003-04-04 19:33:18 +00:00
|
|
|
getch = getch2-win.c
|
2003-04-25 10:00:18 +00:00
|
|
|
SRCS += glob-win.c
|
2003-04-04 19:33:18 +00:00
|
|
|
endif
|
|
|
|
SRCS += $(timer)
|
|
|
|
SRCS += $(getch)
|
2003-02-19 17:22:02 +00:00
|
|
|
|
2006-11-26 18:12:36 +00:00
|
|
|
include ../mpcommon.mak
|
2006-11-25 11:26:53 +00:00
|
|
|
|
2006-11-25 09:49:18 +00:00
|
|
|
mplayer-rc.o: mplayer.rc
|
|
|
|
windres -o $@ $<
|