From 5cd610a07468137066ea4daa5176c3e7045113b0 Mon Sep 17 00:00:00 2001
From: Uros Majstorovic <majstor@majstor.org>
Date: Wed, 5 Aug 2020 03:38:22 +0200
Subject: ecp moved to root; fixed utils and tests

---
 ecp/src/htable/Makefile | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 ecp/src/htable/Makefile

(limited to 'ecp/src/htable/Makefile')

diff --git a/ecp/src/htable/Makefile b/ecp/src/htable/Makefile
new file mode 100644
index 0000000..7ef95d5
--- /dev/null
+++ b/ecp/src/htable/Makefile
@@ -0,0 +1,14 @@
+include ../Makefile.platform
+CFLAGS += $(PIC) -I.. -std=gnu89
+
+obj = htable.o hashtable.o hashtable_itr.o
+
+
+%.o: %.c
+	$(CC) $(CFLAGS) -c $<
+
+all: $(obj)
+	$(AR) rcs libecpht.a $(obj)
+
+clean:
+	rm -f *.o *.a
-- 
cgit v1.2.3