Mercurial > mplayer.hg
annotate loader/Makefile @ 3473:8a46f6a9efd0
Preparing to next acceleration level
author | nick |
---|---|
date | Wed, 12 Dec 2001 18:48:07 +0000 |
parents | 4dad31e655b6 |
children | a4165df1936d |
rev | line source |
---|---|
1 | 1 include ../config.mak |
2 | |
3 # Generated automatically from Makefile.in by configure. | |
3465 | 4 DEFINES=$(WIN32_PATH) -DMPLAYER -D__WINE__ -Ddbg_printf=__vprintf \ |
235 | 5 -DTRACE=__vprintf # -DDETAILED_OUT |
1 | 6 |
2069 | 7 LIB_OBJECTS= ldt_keeper.o pe_image.o module.o \ |
1 | 8 ext.o win32.o driver.o pe_resource.o \ |
9 resource.o registry.o elfdll.o afl.o vfl.o | |
10 | |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
235
diff
changeset
|
11 # 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
|
12 # "-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
|
13 # -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
|
14 # 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
|
15 # propper %ebp first! |
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
235
diff
changeset
|
16 # -fno-omit-frame-pointer works around this gcc-3.0 bug. gcc-2.95.2 is OK. |
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
235
diff
changeset
|
17 WARN_FLAGS = -Wmissing-prototypes -Wimplicit-function-declaration |
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
235
diff
changeset
|
18 CFLAGS=-I. -I.. $(OPTFLAGS) $(EXTRA_INC) $(WARN_FLAGS) -fno-omit-frame-pointer |
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
235
diff
changeset
|
19 #CFLAGS=-I. -I.. -O $(WARN_FLAGS) -g #-fno-omit-frame-pointer |
1 | 20 |
21 all: libloader.a | |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
235
diff
changeset
|
22 |
1 | 23 clean: |
24 -rm -f *.o libloader.a | |
25 | |
26 distclean: clean | |
27 | |
28 .c.o: $@ | |
29 $(CC) $(CFLAGS) $(DEFINES) -c $< | |
30 | |
31 libloader.a: $(LIB_OBJECTS) stubs.s | |
32 $(CC) -c ./stubs.s -o stubs.o | |
33 $(AR) -r libloader.a $(LIB_OBJECTS) stubs.o | |
34 | |
35 dep: | |
36 echo "dependency not required/supported" |