2001-02-24 20:28:24 +00:00
|
|
|
include ../config.mak
|
|
|
|
|
|
|
|
# Generated automatically from Makefile.in by configure.
|
2003-04-21 19:35:39 +00:00
|
|
|
DEFINES=-DMPLAYER -D__WINE__ #-Ddbg_printf=__vprintf \
|
|
|
|
#-DTRACE=__vprintf # -DDETAILED_OUT
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2004-06-26 10:40:23 +00:00
|
|
|
ifeq ($(TARGET_WIN32),yes)
|
|
|
|
LIB_OBJECTS= driver.o afl.o vfl.o
|
|
|
|
else
|
2001-10-04 02:21:47 +00:00
|
|
|
LIB_OBJECTS= ldt_keeper.o pe_image.o module.o \
|
2001-02-24 20:28:24 +00:00
|
|
|
ext.o win32.o driver.o pe_resource.o \
|
2002-11-24 21:45:23 +00:00
|
|
|
resource.o registry.o elfdll.o afl.o vfl.o wrapper.o
|
2004-06-26 10:40:23 +00:00
|
|
|
endif
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-07-12 15:27:48 +00:00
|
|
|
# gcc-3.0 produces buggy code for acmStreamOpen() with
|
|
|
|
# "-O3 -fomit-frame-pointer" or "-O2 -fomit-frame-pointer
|
|
|
|
# -finline-functions -frename-registers" (code is OK with sole -O2),
|
|
|
|
# the bad code accesses parameters via %ebp without setting up a
|
|
|
|
# propper %ebp first!
|
|
|
|
# -fno-omit-frame-pointer works around this gcc-3.0 bug. gcc-2.95.2 is OK.
|
2002-04-23 09:26:29 +00:00
|
|
|
# Note: -D_FILE_OFFSET_BITS=32 is required to disable using mmap64(),
|
|
|
|
# as it's broken in glibc 2.1.2 (bad header) and 2.1.3 (bad code)
|
2002-08-22 23:29:46 +00:00
|
|
|
WARN_FLAGS =
|
2002-08-22 23:41:51 +00:00
|
|
|
CFLAGS=-I. -I.. $(OPTFLAGS) -U_FILE_OFFSET_BITS $(EXTRA_INC) $(WARN_FLAGS) -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer
|
2001-07-12 15:27:48 +00:00
|
|
|
#CFLAGS=-I. -I.. -O $(WARN_FLAGS) -g #-fno-omit-frame-pointer
|
2001-02-24 20:28:24 +00:00
|
|
|
|
|
|
|
all: libloader.a
|
2001-07-12 15:27:48 +00:00
|
|
|
|
2001-02-24 20:28:24 +00:00
|
|
|
clean:
|
|
|
|
-rm -f *.o libloader.a
|
|
|
|
|
|
|
|
distclean: clean
|
|
|
|
|
2004-01-29 12:01:26 +00:00
|
|
|
.c.o:
|
2001-02-24 20:28:24 +00:00
|
|
|
$(CC) $(CFLAGS) $(DEFINES) -c $<
|
|
|
|
|
|
|
|
libloader.a: $(LIB_OBJECTS) stubs.s
|
|
|
|
$(CC) -c ./stubs.s -o stubs.o
|
2002-04-28 01:30:04 +00:00
|
|
|
ifeq ($(TARGET_OS),OpenBSD)
|
|
|
|
./loader_objfix.sh
|
|
|
|
endif
|
2001-02-24 20:28:24 +00:00
|
|
|
$(AR) -r libloader.a $(LIB_OBJECTS) stubs.o
|
2004-06-24 12:52:17 +00:00
|
|
|
$(RANLIB) libloader.a
|
2001-02-24 20:28:24 +00:00
|
|
|
|
|
|
|
dep:
|
|
|
|
echo "dependency not required/supported"
|