From 3ef6719f47b734b12c0b11c725b7f12e3fb3c08a Mon Sep 17 00:00:00 2001 From: Uros Majstorovic Date: Tue, 23 May 2017 14:19:26 +0200 Subject: fs layout updated --- code/core/htable/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 code/core/htable/Makefile (limited to 'code/core/htable/Makefile') diff --git a/code/core/htable/Makefile b/code/core/htable/Makefile new file mode 100644 index 0000000..af329b4 --- /dev/null +++ b/code/core/htable/Makefile @@ -0,0 +1,11 @@ +CFLAGS=-I.. -std=gnu89 $(PIC) +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