Mercurial > mplayer.hg
annotate Gui/mplayer/Makefile @ 1866:32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
author | pontscho |
---|---|
date | Fri, 07 Sep 2001 21:04:14 +0000 |
parents | d237c5d4b216 |
children | 125ce43b3ac1 |
rev | line source |
---|---|
1693 | 1 |
2 include ../../config.mak | |
3 include ../config.mak | |
4 | |
5 include ../bitmap/bitmap.mak | |
6 include ../gui.mak | |
7 | |
8 LIB = mplayer | |
9 | |
10 INCDIR = -I. -I../event -I../wm -I../skin $(GTKINC) | |
11 | |
12 OPTIMIZE = $(OPTFLAGS) -fomit-frame-pointer \ | |
13 -fexpensive-optimizations -malign-double -fschedule-insns2 -mwide-multiply -Wall | |
14 | |
15 CFLAGS = $(OPTIMIZE) $(INCDIR) $(DEBUG) | |
16 | |
17 .SUFFIXES: .c .o | |
18 | |
19 .c.o: | |
20 $(CC) -c $(CFLAGS) -o $@ $< | |
21 | |
22 ### TARGETS ### | |
23 | |
24 default: .depend $(MPLAYEROBJS) | |
25 | |
26 all: default | |
27 | |
28 clean: | |
29 rm -rf $(MPLAYEROBJS) *.o *~ *.bak .depend | |
30 | |
31 distclean: clean | |
32 | |
33 dep: depend | |
34 | |
35 depend: .depend | |
36 | |
1866
32b1bb50a0e8
some bug fix, and add decoration item to skin conffile. faszom(C)
pontscho
parents:
1693
diff
changeset
|
37 .depend: Makefile ../config.mak ../gui.mak ../bitmap/bitmap.mak |
1693 | 38 $(CC) -MM $(CFLAGS) $(MPLAYERSRCS) 1>.depend |
39 | |
40 # | |
41 # include dependency files if they exist | |
42 # | |
43 ifneq ($(wildcard .depend),) | |
44 include .depend | |
45 endif |