Mercurial > mplayer.hg
annotate loader/Makefile @ 20836:3670220d2511
s/by/be/
author | michael |
---|---|
date | Sat, 11 Nov 2006 02:04:02 +0000 |
parents | 60e80b52abdd |
children | 8a017ed1c615 |
rev | line source |
---|---|
1 | 1 include ../config.mak |
2 | |
3 # Generated automatically from Makefile.in by configure. | |
9962 | 4 DEFINES=-DMPLAYER -D__WINE__ #-Ddbg_printf=__vprintf \ |
5 #-DTRACE=__vprintf # -DDETAILED_OUT | |
1 | 6 |
20825 | 7 SRCS= driver.c afl.c vfl.c |
8 ifneq ($(TARGET_WIN32),yes) | |
9 SRCS+= ldt_keeper.c pe_image.c module.c ext.c win32.c \ | |
10 pe_resource.c resource.c registry.c elfdll.c wrapper.S | |
12680 | 11 endif |
1 | 12 |
20825 | 13 OBJS = $(SRCS:.c=.o) |
20835
60e80b52abdd
Hack to make wrapper.S be compiled again. Someone who knows make please fix properly.
reimar
parents:
20827
diff
changeset
|
14 OBJS := $(OBJS:.S=.o) |
20825 | 15 |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
235
diff
changeset
|
16 # 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
|
17 # "-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
|
18 # -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
|
19 # 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
|
20 # propper %ebp first! |
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
235
diff
changeset
|
21 # -fno-omit-frame-pointer works around this gcc-3.0 bug. gcc-2.95.2 is OK. |
5793 | 22 # Note: -D_FILE_OFFSET_BITS=32 is required to disable using mmap64(), |
23 # as it's broken in glibc 2.1.2 (bad header) and 2.1.3 (bad code) | |
20824 | 24 CFLAGS=-I. -I.. $(OPTFLAGS) -U_FILE_OFFSET_BITS -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer |
25 #CFLAGS=-I. -I.. -O -g #-fno-omit-frame-pointer | |
1 | 26 |
27 all: libloader.a | |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
235
diff
changeset
|
28 |
1 | 29 clean: |
17488
ce1ba8fd57e7
Make clean/distclean behave uniformly in all directories.
diego
parents:
12680
diff
changeset
|
30 rm -f *.o *.a *~ |
1 | 31 |
32 distclean: clean | |
33 | |
11875
6b28eb95c08b
* changes mencoder's exit code on explicit kill to 2
attila
parents:
9962
diff
changeset
|
34 .c.o: |
1 | 35 $(CC) $(CFLAGS) $(DEFINES) -c $< |
36 | |
20825 | 37 libloader.a: $(OBJS) stubs.s |
1 | 38 $(CC) -c ./stubs.s -o stubs.o |
20825 | 39 $(AR) -r libloader.a $(OBJS) stubs.o |
12632 | 40 $(RANLIB) libloader.a |
1 | 41 |
20827 | 42 dep depend: |
43 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend | |
44 | |
45 # | |
46 # include dependency files if they exist | |
47 # | |
48 ifneq ($(wildcard .depend),) | |
49 include .depend | |
50 endif |