Mercurial > mplayer.hg
annotate loader/Makefile @ 20827:b44ff1c746fe
Add standard depend target.
author | diego |
---|---|
date | Fri, 10 Nov 2006 18:31:12 +0000 |
parents | bad45d01be6a |
children | 60e80b52abdd |
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) |
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 | 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) | |
20824 | 23 CFLAGS=-I. -I.. $(OPTFLAGS) -U_FILE_OFFSET_BITS -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer |
24 #CFLAGS=-I. -I.. -O -g #-fno-omit-frame-pointer | |
1 | 25 |
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 | 28 clean: |
17488
ce1ba8fd57e7
Make clean/distclean behave uniformly in all directories.
diego
parents:
12680
diff
changeset
|
29 rm -f *.o *.a *~ |
1 | 30 |
31 distclean: clean | |
32 | |
11875
6b28eb95c08b
* changes mencoder's exit code on explicit kill to 2
attila
parents:
9962
diff
changeset
|
33 .c.o: |
1 | 34 $(CC) $(CFLAGS) $(DEFINES) -c $< |
35 | |
20825 | 36 libloader.a: $(OBJS) stubs.s |
1 | 37 $(CC) -c ./stubs.s -o stubs.o |
20825 | 38 $(AR) -r libloader.a $(OBJS) stubs.o |
12632 | 39 $(RANLIB) libloader.a |
1 | 40 |
20827 | 41 dep depend: |
42 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend | |
43 | |
44 # | |
45 # include dependency files if they exist | |
46 # | |
47 ifneq ($(wildcard .depend),) | |
48 include .depend | |
49 endif |