Mercurial > mplayer.hg
annotate libdvdread/Makefile @ 20683:4f3e4ba365f8
Missing <option> tag
author | torinthiel |
---|---|
date | Sun, 05 Nov 2006 15:06:02 +0000 |
parents | 1a4fcea7ab53 |
children | e12d41b21042 |
rev | line source |
---|---|
7031 | 1 |
2 ifneq ($(wildcard ../config.mak),) | |
3 include ../config.mak | |
4 endif | |
5 | |
20613 | 6 SRCS = dvd_input.c \ |
15873 | 7 dvd_reader.c \ |
8 dvd_udf.c \ | |
9 ifo_print.c \ | |
10 ifo_read.c \ | |
11 nav_print.c \ | |
12 nav_read.c \ | |
15874 | 13 md5.c \ |
7031 | 14 |
15 OBJS = $(SRCS:.c=.o) | |
16 | |
20615
1a4fcea7ab53
libmpdvdkit2 --> libdvdread, it just contains libdvdread now.
diego
parents:
20614
diff
changeset
|
17 LIB=libdvdread |
7031 | 18 |
19 .SUFFIXES: .c .o | |
20 | |
21 ifeq ($(OPTFLAGS),) | |
16713 | 22 OPTFLAGS = -mcpu=pentium -march=pentium -O4 |
7031 | 23 else |
16713 | 24 OPTFLAGS += -DHAVE_MPLAYER |
7031 | 25 endif |
26 | |
27 # \ -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 | |
28 | |
29 # -funroll-loops removed, triggered gcc 3.0.4 (3.x?) bug | |
20613 | 30 CFLAGS= -I../libdvdcss -I.. $(OPTFLAGS) -D__USE_UNIX98 -D_GNU_SOURCE \ |
16714
2ab52c9b72b9
Replace unconditional #defines by build system trickery.
diego
parents:
16713
diff
changeset
|
31 -DHAVE_DVDCSS_DVDCSS_H -DSTDC_HEADERS -DHAVE_LIMITS_H \ |
17187
e2b0c2841643
libdvdread configure script defines __DARWIN__ on darwin to trigger
diego
parents:
16714
diff
changeset
|
32 |
7031 | 33 .c.o: |
34 $(CC) $(CFLAGS) -c -o $@ $< | |
35 | |
16713 | 36 all: $(LIB).a |
7031 | 37 |
38 $(LIB).a: $(OBJS) | |
39 $(AR) rc $(LIB).a $(OBJS) | |
12632 | 40 $(RANLIB) $(LIB).a |
7031 | 41 |
42 clean: | |
17488
ce1ba8fd57e7
Make clean/distclean behave uniformly in all directories.
diego
parents:
17187
diff
changeset
|
43 rm -f *.o *.a *~ *.so |
7031 | 44 |
45 distclean: clean | |
17488
ce1ba8fd57e7
Make clean/distclean behave uniformly in all directories.
diego
parents:
17187
diff
changeset
|
46 rm -f .depend |
7031 | 47 |
48 dep: depend | |
49 | |
18483
42e57ea2b91f
Make depend targets consistent: Remove redirection through .depend target.
diego
parents:
18481
diff
changeset
|
50 depend: |
7031 | 51 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend |
52 | |
53 # | |
54 # include dependency files if they exist | |
55 # | |
16713 | 56 ifneq ($(wildcard .depend),) |
57 include .depend | |
58 endif |