Changed code that used pts=0 in demux packets to indicate "not known".
[mplayer.git] / loader / Makefile
blob953664401b84d83f71a364b340008061b490e5d7
1 include ../config.mak
3 # Generated automatically from Makefile.in by configure.
4 DEFINES=-DMPLAYER -D__WINE__ #-Ddbg_printf=__vprintf \
5 #-DTRACE=__vprintf # -DDETAILED_OUT
7 ifeq ($(TARGET_WIN32),yes)
8 LIB_OBJECTS= driver.o afl.o vfl.o
9 else
10 LIB_OBJECTS= ldt_keeper.o pe_image.o module.o ext.o win32.o \
11 driver.o pe_resource.o resource.o registry.o \
12 elfdll.o afl.o vfl.o wrapper.o
13 endif
15 # gcc-3.0 produces buggy code for acmStreamOpen() with
16 # "-O3 -fomit-frame-pointer" or "-O2 -fomit-frame-pointer
17 # -finline-functions -frename-registers" (code is OK with sole -O2),
18 # the bad code accesses parameters via %ebp without setting up a
19 # propper %ebp first!
20 # -fno-omit-frame-pointer works around this gcc-3.0 bug. gcc-2.95.2 is OK.
21 # Note: -D_FILE_OFFSET_BITS=32 is required to disable using mmap64(),
22 # as it's broken in glibc 2.1.2 (bad header) and 2.1.3 (bad code)
23 WARN_FLAGS =
24 CFLAGS=-I. -I.. $(OPTFLAGS) -U_FILE_OFFSET_BITS $(WARN_FLAGS) -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer
25 #CFLAGS=-I. -I.. -O $(WARN_FLAGS) -g #-fno-omit-frame-pointer
27 all: libloader.a
29 clean:
30 rm -f *.o *.a *~
32 distclean: clean
34 .c.o:
35 $(CC) $(CFLAGS) $(DEFINES) -c $<
37 libloader.a: $(LIB_OBJECTS) stubs.s
38 $(CC) -c ./stubs.s -o stubs.o
39 ifeq ($(TARGET_OS),OpenBSD)
40 ./loader_objfix.sh
41 endif
42 $(AR) -r libloader.a $(LIB_OBJECTS) stubs.o
43 $(RANLIB) libloader.a
45 dep:
46 echo "dependency not required/supported"