blob: ed0f7607544222d23ceda0b5c35c21a0bc4221af (
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
|
MAKE=make
CFLAGS = -I. -pthread -O3 $(PIC)
obj = core.o timer.o rbuf.o rbuf_send.o rbuf_recv.o msgq.o
subdirs = crypto posix htable
%.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
|