diff options
Diffstat (limited to 'code/Makefile')
-rw-r--r-- | code/Makefile | 4 |
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; \ |