blob: 1b16f394f14b1512f47049ea0238e8a0fa48ac01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
include Makefile.platform
CFLAGS=$(CFLAGS_PL) $(PIC) -I.
obj = core.o timer.o $(obj_rbuf)
subdirs = crypto $(vconn) $(htable) $(platform)
%.o: %.c
$(CC) $(CFLAGS) -c $<
%.o: %.c %.h
$(CC) $(CFLAGS) -c $<
all: $(obj)
$(AR) rcs libecpcore.a $(obj)
for i in $(subdirs); do \
(cd $$i && $(MAKE) && cd ..) || exit; \
done
clean:
for i in $(subdirs); do \
(cd $$i && $(MAKE) clean && cd ..) || exit; \
done
rm -f *.o *.a
|