summaryrefslogtreecommitdiff
path: root/code/Makefile
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2017-05-23 03:49:54 +0200
committerUros Majstorovic <majstor@majstor.org>2017-05-23 03:49:54 +0200
commit7c70a430f9c708be2fcce8c9a0d8cecde7f75fc0 (patch)
tree5ea4cfa8a21be07690c28161153017b7270bc54b /code/Makefile
parent25de5e761daab8b897a4f09ff8503e6f43c299f9 (diff)
changes for proxy
Diffstat (limited to 'code/Makefile')
-rw-r--r--code/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/code/Makefile b/code/Makefile
index 023fa7a..be1a827 100644
--- a/code/Makefile
+++ b/code/Makefile
@@ -1,12 +1,12 @@
MAKE=make
CFLAGS = -I. -pthread -O3 -DECP_DEBUG
-obj = core.o timer.o msgq.o init.o
+obj = core.o timer.o msgq.o
subdirs = crypto posix htable test
%.o: %.c %.h
$(CC) $(CFLAGS) -c $<
-all: $(obj)
+all: $(obj) init.o init_proxy.o
$(AR) rcs libecpcore.a $(obj)
for i in $(subdirs); do \
(cd $$i && $(MAKE) && cd ..) || exit; \