summaryrefslogtreecommitdiff
path: root/ecp/src/crypto/Makefile
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2022-02-02 06:40:10 +0100
committerUros Majstorovic <majstor@majstor.org>2022-02-02 06:40:10 +0100
commit64b55e7e1236121ea4197d9a37cfec43b196cfe8 (patch)
treeeb16f4a2d3eae3d9485eccbd923812a56b627979 /ecp/src/crypto/Makefile
parenta4401c99c2a54ba9a964317cbff915d40d16e470 (diff)
moved ecp, platform -> src
Diffstat (limited to 'ecp/src/crypto/Makefile')
-rw-r--r--ecp/src/crypto/Makefile25
1 files changed, 0 insertions, 25 deletions
diff --git a/ecp/src/crypto/Makefile b/ecp/src/crypto/Makefile
deleted file mode 100644
index b1d2996..0000000
--- a/ecp/src/crypto/Makefile
+++ /dev/null
@@ -1,25 +0,0 @@
-include ../common.mk
-ssl_dir = ../../../ext/libressl
-CFLAGS += -I$(ssl_dir)/include
-MAKEFLAGS += -I$(pwd)/..
-
-include $(ssl_dir)/ssl_obj.mk
-obj = crypto.o
-obj_ssl = $(addprefix $(ssl_dir)/,$(obj_dep))
-subdirs = $(ssl_dir)
-
-
-%.o: %.c
- $(CC) $(CFLAGS) -c $<
-
-all: $(obj)
- for i in $(subdirs); do \
- (cd $$i && $(MAKE)) || exit; \
- done
- $(AR) rcs libecpcr.a $(obj) $(obj_ssl)
-
-clean:
- for i in $(subdirs); do \
- (cd $$i && $(MAKE) clean) || exit; \
- done
- rm -f *.o *.a