summaryrefslogtreecommitdiff
path: root/code/core/Makefile
blob: d3610bfe5da048ad01d19404e3ec7ea5e671f23d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
MAKE=make
CFLAGS = -I. -pthread -O3 -DECP_DEBUG
obj = core.o timer.o msgq.o
subdirs = crypto posix htable

%.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