blob: 8d2b087a61355f97db9301490a39ed428e1f0111 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
SRCS += $(SRCS-yes)
SRCS2 += $(SRCS2-yes)
CFLAGS += $(CFLAGS-yes)
OBJS = $(addsuffix .o, $(basename $(SRCS)) )
OBJS2 = $(addsuffix .o, $(basename $(SRCS2)) )
CFLAGS += -I. -I.. $(OPTFLAGS)
LIBS = $(LIBNAME) $(LIBNAME2)
all: $(LIBS)
$(LIBNAME): $(OBJS)
$(LIBNAME2): $(OBJS2)
$(LIBNAME) $(LIBNAME2):
$(AR) r $@ $^
$(RANLIB) $@
clean::
rm -f *.o *.a *~
distclean:: clean
rm -f .depend
dep depend:
$(CC) -MM $(CFLAGS) $(SRCS) $(SRCS2) 1>.depend
-include .depend
|