annotate mpcommon.mak @ 21390:fd1495e1538d

Add libav include paths to CFLAGS without indirection.
author diego
date Fri, 01 Dec 2006 01:11:42 +0000
parents c74dbfe68bb3
children 254e55a37c6d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
21307
5fdf546b4e57 Move common code to mpcommon.mak.
diego
parents: 21303
diff changeset
1 SRCS += $(SRCS-yes)
5fdf546b4e57 Move common code to mpcommon.mak.
diego
parents: 21303
diff changeset
2 SRCS2 += $(SRCS2-yes)
21390
fd1495e1538d Add libav include paths to CFLAGS without indirection.
diego
parents: 21338
diff changeset
3 CFLAGS += $(CFLAGS-yes)
21307
5fdf546b4e57 Move common code to mpcommon.mak.
diego
parents: 21303
diff changeset
4
21338
c74dbfe68bb3 Generate OBJS from SRCS in a more elegant and less redundant way.
diego
parents: 21307
diff changeset
5 OBJS = $(addsuffix .o, $(basename $(SRCS)) )
c74dbfe68bb3 Generate OBJS from SRCS in a more elegant and less redundant way.
diego
parents: 21307
diff changeset
6 OBJS2 = $(addsuffix .o, $(basename $(SRCS2)) )
21259
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
7
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
8 CFLAGS += -I. -I.. $(OPTFLAGS)
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
9
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
10 .SUFFIXES: .c .o
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
11
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
12 .c.o:
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
13 $(CC) -c $(CFLAGS) -o $@ $<
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
14
21287
f423ce0a1c36 Move common code for generating multiple libraries to mpcommon.mak.
diego
parents: 21259
diff changeset
15 LIBS = $(LIBNAME) $(LIBNAME2)
f423ce0a1c36 Move common code for generating multiple libraries to mpcommon.mak.
diego
parents: 21259
diff changeset
16
f423ce0a1c36 Move common code for generating multiple libraries to mpcommon.mak.
diego
parents: 21259
diff changeset
17 all: $(LIBS)
21259
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
18
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
19 $(LIBNAME): $(OBJS)
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
20 $(AR) r $@ $^
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
21 $(RANLIB) $@
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
22
21287
f423ce0a1c36 Move common code for generating multiple libraries to mpcommon.mak.
diego
parents: 21259
diff changeset
23 $(LIBNAME2): $(OBJS2)
f423ce0a1c36 Move common code for generating multiple libraries to mpcommon.mak.
diego
parents: 21259
diff changeset
24 $(AR) r $@ $^
f423ce0a1c36 Move common code for generating multiple libraries to mpcommon.mak.
diego
parents: 21259
diff changeset
25 $(RANLIB) $@
f423ce0a1c36 Move common code for generating multiple libraries to mpcommon.mak.
diego
parents: 21259
diff changeset
26
21259
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
27 clean::
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
28 rm -f *.o *.a *~
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
29
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
30 distclean:: clean
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
31 rm -f .depend
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
32
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
33 dep depend:
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
34 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
35
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
36 ifneq ($(wildcard .depend),)
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
37 include .depend
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
38 endif