annotate mpcommon.mak @ 21292:2f88f0247a4f

.s files don't exist anymore.
author diego
date Mon, 27 Nov 2006 10:44:43 +0000
parents f423ce0a1c36
children 66605be4662b
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:.cpp=.o)
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
4
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
5 CFLAGS += -I. -I.. $(OPTFLAGS)
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
6
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
7 .SUFFIXES: .c .o
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
8
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
9 .c.o:
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
10 $(CC) -c $(CFLAGS) -o $@ $<
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
11
21287
f423ce0a1c36 Move common code for generating multiple libraries to mpcommon.mak.
diego
parents: 21259
diff changeset
12 LIBS = $(LIBNAME) $(LIBNAME2)
f423ce0a1c36 Move common code for generating multiple libraries to mpcommon.mak.
diego
parents: 21259
diff changeset
13
f423ce0a1c36 Move common code for generating multiple libraries to mpcommon.mak.
diego
parents: 21259
diff changeset
14 all: $(LIBS)
21259
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
15
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
16 $(LIBNAME): $(OBJS)
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
17 $(AR) r $@ $^
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
18 $(RANLIB) $@
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
19
21287
f423ce0a1c36 Move common code for generating multiple libraries to mpcommon.mak.
diego
parents: 21259
diff changeset
20 $(LIBNAME2): $(OBJS2)
f423ce0a1c36 Move common code for generating multiple libraries to mpcommon.mak.
diego
parents: 21259
diff changeset
21 $(AR) r $@ $^
f423ce0a1c36 Move common code for generating multiple libraries to mpcommon.mak.
diego
parents: 21259
diff changeset
22 $(RANLIB) $@
f423ce0a1c36 Move common code for generating multiple libraries to mpcommon.mak.
diego
parents: 21259
diff changeset
23
21259
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
24 clean::
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
25 rm -f *.o *.a *~
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
26
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
27 distclean:: clean
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
28 rm -f .depend
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 dep depend:
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
31 $(CC) -MM $(CFLAGS) $(SRCS) 1>.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 ifneq ($(wildcard .depend),)
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
34 include .depend
92b122592776 Merge common parts of all Makefiles into one file included by all.
diego
parents:
diff changeset
35 endif