annotate mpcommon.mak @ 21290:efc774a1e5a4

fix compilation for win32 dll codec support for intel osx
author nplourde
date Mon, 27 Nov 2006 02:44:06 +0000
parents f423ce0a1c36
children 2f88f0247a4f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
21259
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
1 OBJS = $(SRCS:.c=.o)
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
2 OBJS := $(OBJS:.S=.o)
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
3 OBJS := $(OBJS:.s=.o)
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
4 OBJS := $(OBJS:.cpp=.o)
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
5
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
6 CFLAGS += -I. -I.. $(OPTFLAGS)
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 .SUFFIXES: .c .o
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 .c.o:
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
11 $(CC) -c $(CFLAGS) -o $@ $<
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
12
21287
f423ce0a1c36 Move common code for generating multiple libraries to mpcommon.mak.
diego
parents: 21259
diff changeset
13 LIBS = $(LIBNAME) $(LIBNAME2)
f423ce0a1c36 Move common code for generating multiple libraries to mpcommon.mak.
diego
parents: 21259
diff changeset
14
f423ce0a1c36 Move common code for generating multiple libraries to mpcommon.mak.
diego
parents: 21259
diff changeset
15 all: $(LIBS)
21259
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
16
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
17 $(LIBNAME): $(OBJS)
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
18 $(AR) r $@ $^
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
19 $(RANLIB) $@
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
20
21287
f423ce0a1c36 Move common code for generating multiple libraries to mpcommon.mak.
diego
parents: 21259
diff changeset
21 $(LIBNAME2): $(OBJS2)
f423ce0a1c36 Move common code for generating multiple libraries to mpcommon.mak.
diego
parents: 21259
diff changeset
22 $(AR) r $@ $^
f423ce0a1c36 Move common code for generating multiple libraries to mpcommon.mak.
diego
parents: 21259
diff changeset
23 $(RANLIB) $@
f423ce0a1c36 Move common code for generating multiple libraries to mpcommon.mak.
diego
parents: 21259
diff changeset
24
21259
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
25 clean::
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
26 rm -f *.o *.a *~
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
27
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
28 distclean:: clean
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
29 rm -f .depend
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
30
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
31 dep depend:
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
32 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
33
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
34 ifneq ($(wildcard .depend),)
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
35 include .depend
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
36 endif