Mercurial > mplayer.hg
comparison libmpdvdkit2/Makefile @ 16713:117708385e35
whitespace cosmetics
author | diego |
---|---|
date | Sun, 09 Oct 2005 09:53:27 +0000 |
parents | 483e955893b8 |
children | 2ab52c9b72b9 |
comparison
equal
deleted
inserted
replaced
16712:2059bee8c11c | 16713:117708385e35 |
---|---|
15 libdvdcss.c \ | 15 libdvdcss.c \ |
16 nav_print.c \ | 16 nav_print.c \ |
17 nav_read.c \ | 17 nav_read.c \ |
18 md5.c \ | 18 md5.c \ |
19 | 19 |
20 #bsdi_ioctl.c | 20 #bsdi_ioctl.c |
21 | 21 |
22 OBJS = $(SRCS:.c=.o) | 22 OBJS = $(SRCS:.c=.o) |
23 | 23 |
24 LIB=libmpdvdkit | 24 LIB=libmpdvdkit |
25 | 25 |
26 .SUFFIXES: .c .o | 26 .SUFFIXES: .c .o |
27 | 27 |
28 ifeq ($(OPTFLAGS),) | 28 ifeq ($(OPTFLAGS),) |
29 OPTFLAGS = -mcpu=pentium -march=pentium -O4 | 29 OPTFLAGS = -mcpu=pentium -march=pentium -O4 |
30 else | 30 else |
31 OPTFLAGS += -DHAVE_MPLAYER | 31 OPTFLAGS += -DHAVE_MPLAYER |
32 endif | 32 endif |
33 | 33 |
34 # \ -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 | 34 # \ -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 |
35 | 35 |
36 # -funroll-loops removed, triggered gcc 3.0.4 (3.x?) bug | 36 # -funroll-loops removed, triggered gcc 3.0.4 (3.x?) bug |
39 -DHAVE_DVDCSS_DVDCSS_H -DSTDC_HEADERS | 39 -DHAVE_DVDCSS_DVDCSS_H -DSTDC_HEADERS |
40 | 40 |
41 .c.o: | 41 .c.o: |
42 $(CC) $(CFLAGS) -c -o $@ $< | 42 $(CC) $(CFLAGS) -c -o $@ $< |
43 | 43 |
44 all: $(LIB).a | 44 all: $(LIB).a |
45 default: $(LIB).a | 45 default: $(LIB).a |
46 | 46 |
47 $(LIB).a: $(OBJS) | 47 $(LIB).a: $(OBJS) |
48 $(AR) rc $(LIB).a $(OBJS) | 48 $(AR) rc $(LIB).a $(OBJS) |
49 $(RANLIB) $(LIB).a | 49 $(RANLIB) $(LIB).a |
64 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend | 64 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend |
65 | 65 |
66 # | 66 # |
67 # include dependency files if they exist | 67 # include dependency files if they exist |
68 # | 68 # |
69 ifneq ($(wildcard .depend),) | 69 ifneq ($(wildcard .depend),) |
70 include .depend | 70 include .depend |
71 endif | 71 endif |