From 5cd610a07468137066ea4daa5176c3e7045113b0 Mon Sep 17 00:00:00 2001 From: Uros Majstorovic Date: Wed, 5 Aug 2020 03:38:22 +0200 Subject: ecp moved to root; fixed utils and tests --- ecp/src/Makefile | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 ecp/src/Makefile (limited to 'ecp/src/Makefile') diff --git a/ecp/src/Makefile b/ecp/src/Makefile new file mode 100644 index 0000000..9456a4b --- /dev/null +++ b/ecp/src/Makefile @@ -0,0 +1,36 @@ +include Makefile.platform +CFLAGS += $(PIC) -I. + +obj = core.o timer.o $(obj_rbuf) +subdirs = crypto platform $(htable) $(vconn) + +%.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)) || exit; \ + done + +install: all + mkdir -p build-$(platform)/ + install libecpcore.a build-$(platform)/ + install crypto/libecpcr.a build-$(platform)/ + install platform/libecptm.a build-$(platform)/ + install platform/libecptr.a build-$(platform)/ + if [ -f htable/libecpht.a ]; then \ + install htable/libecpht.a build-$(platform)/; \ + fi + if [ -f vconn/libecpvconn.a ]; then \ + install vconn/libecpvconn.a build-$(platform)/; \ + fi + +clean: + for i in $(subdirs); do \ + (cd $$i && $(MAKE) clean) || exit; \ + done + rm -f *.o *.a \ No newline at end of file -- cgit v1.2.3