summaryrefslogtreecommitdiff
path: root/code/core/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'code/core/Makefile')
-rw-r--r--code/core/Makefile23
1 files changed, 0 insertions, 23 deletions
diff --git a/code/core/Makefile b/code/core/Makefile
deleted file mode 100644
index 88d8c84..0000000
--- a/code/core/Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-include ../Makefile.platform
-CFLAGS=$(CFLAGS_PL) $(PIC) -I.
-
-obj = core.o timer.o $(obj_rbuf)
-subdirs = crypto $(vconn) $(htable) $(platform)
-
-%.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 \ No newline at end of file