annotate loader/Makefile @ 20826:bad45d01be6a

Remove loader_objfix.sh hack, it's only needed for very old OpenBSD versions.
author diego
date Fri, 10 Nov 2006 18:28:53 +0000
parents f596e1b45ba7
children b44ff1c746fe
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
1 include ../config.mak
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
2
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
3 # Generated automatically from Makefile.in by configure.
9962
496fbdabeb7c moved some obsolete debug stuff
alex
parents: 9462
diff changeset
4 DEFINES=-DMPLAYER -D__WINE__ #-Ddbg_printf=__vprintf \
496fbdabeb7c moved some obsolete debug stuff
alex
parents: 9462
diff changeset
5 #-DTRACE=__vprintf # -DDETAILED_OUT
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
6
20825
f596e1b45ba7 Use default variable names.
diego
parents: 20824
diff changeset
7 SRCS= driver.c afl.c vfl.c
f596e1b45ba7 Use default variable names.
diego
parents: 20824
diff changeset
8 ifneq ($(TARGET_WIN32),yes)
f596e1b45ba7 Use default variable names.
diego
parents: 20824
diff changeset
9 SRCS+= ldt_keeper.c pe_image.c module.c ext.c win32.c \
f596e1b45ba7 Use default variable names.
diego
parents: 20824
diff changeset
10 pe_resource.c resource.c registry.c elfdll.c wrapper.S
12680
331104f5743c fix loader build on windows
faust3
parents: 12632
diff changeset
11 endif
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
12
20825
f596e1b45ba7 Use default variable names.
diego
parents: 20824
diff changeset
13 OBJS = $(SRCS:.c=.o)
f596e1b45ba7 Use default variable names.
diego
parents: 20824
diff changeset
14
1307
d8c1b0b38edc Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents: 235
diff changeset
15 # gcc-3.0 produces buggy code for acmStreamOpen() with
d8c1b0b38edc Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents: 235
diff changeset
16 # "-O3 -fomit-frame-pointer" or "-O2 -fomit-frame-pointer
d8c1b0b38edc Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents: 235
diff changeset
17 # -finline-functions -frename-registers" (code is OK with sole -O2),
d8c1b0b38edc Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents: 235
diff changeset
18 # the bad code accesses parameters via %ebp without setting up a
d8c1b0b38edc Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents: 235
diff changeset
19 # propper %ebp first!
d8c1b0b38edc Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents: 235
diff changeset
20 # -fno-omit-frame-pointer works around this gcc-3.0 bug. gcc-2.95.2 is OK.
5793
a4165df1936d divx audio workaround
arpi
parents: 3465
diff changeset
21 # Note: -D_FILE_OFFSET_BITS=32 is required to disable using mmap64(),
a4165df1936d divx audio workaround
arpi
parents: 3465
diff changeset
22 # as it's broken in glibc 2.1.2 (bad header) and 2.1.3 (bad code)
20824
8c6ace19e785 Remove redundant variable.
diego
parents: 19037
diff changeset
23 CFLAGS=-I. -I.. $(OPTFLAGS) -U_FILE_OFFSET_BITS -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer
8c6ace19e785 Remove redundant variable.
diego
parents: 19037
diff changeset
24 #CFLAGS=-I. -I.. -O -g #-fno-omit-frame-pointer
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
25
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
26 all: libloader.a
1307
d8c1b0b38edc Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents: 235
diff changeset
27
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
28 clean:
17488
ce1ba8fd57e7 Make clean/distclean behave uniformly in all directories.
diego
parents: 12680
diff changeset
29 rm -f *.o *.a *~
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
30
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
31 distclean: clean
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
32
11875
6b28eb95c08b * changes mencoder's exit code on explicit kill to 2
attila
parents: 9962
diff changeset
33 .c.o:
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
34 $(CC) $(CFLAGS) $(DEFINES) -c $<
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
35
20825
f596e1b45ba7 Use default variable names.
diego
parents: 20824
diff changeset
36 libloader.a: $(OBJS) stubs.s
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
37 $(CC) -c ./stubs.s -o stubs.o
20825
f596e1b45ba7 Use default variable names.
diego
parents: 20824
diff changeset
38 $(AR) -r libloader.a $(OBJS) stubs.o
12632
80973aa180a5 ranlib cleanup by Dan Christiansen
alex
parents: 11875
diff changeset
39 $(RANLIB) libloader.a
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
40
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
41 dep:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
42 echo "dependency not required/supported"