2001-10-24 07:34:41 +00:00
|
|
|
|
|
|
|
include ../config.mak
|
|
|
|
|
|
|
|
LIBNAME = libosdep.a
|
|
|
|
|
2007-01-10 19:07:42 +00:00
|
|
|
SRCS= strl.c \
|
2001-10-24 07:34:41 +00:00
|
|
|
|
2007-01-10 19:07:42 +00:00
|
|
|
SRCS-$(HAVE_SYS_MMAN_H) += mmap_anon.c
|
2006-11-27 13:42:36 +00:00
|
|
|
SRCS-$(MACOSX_FINDER_SUPPORT) += macosx_finder_args.c
|
2007-01-10 19:07:42 +00:00
|
|
|
ifneq ($(TARGET_OS),MINGW32)
|
|
|
|
SRCS-$(STREAM_CACHE) += shmem.c
|
|
|
|
endif
|
|
|
|
|
2007-01-10 19:35:41 +00:00
|
|
|
SRCS-$(NEED_FSEEKO) += fseeko.c
|
|
|
|
SRCS-$(NEED_FTELLO) += ftello.c
|
2007-01-10 19:07:42 +00:00
|
|
|
SRCS-$(NEED_GETTIMEOFDAY) += gettimeofday.c
|
|
|
|
SRCS-$(NEED_SCANDIR) += scandir.c
|
|
|
|
SRCS-$(NEED_SETENV) += setenv.c
|
|
|
|
SRCS-$(NEED_STRSEP) += strsep.c
|
|
|
|
SRCS-$(NEED_SWAB) += swab.c
|
|
|
|
SRCS-$(NEED_VSSCANF) += vsscanf.c
|
2006-11-27 13:42:36 +00:00
|
|
|
|
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
|
2007-01-10 19:07:42 +00:00
|
|
|
SRCS-$(NEED_GLOB) += 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 $@ $<
|