diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f144924 --- /dev/null +++ b/Makefile @@ -0,0 +1,23 @@ +include ../config.mk + +SRCDIR := . +OBJS := hash.o + +LIB := $(BUILD_DIR)/libhash.a + +INCLUDES := . .. +DEFINES := + +all : $(LIB) + +$(LIB) : $(OBJS) + $(AR) -r $(LIB) $(OBJS) + +clean: + rm -f *.o + rm -f *.a + +.PHONY: clean + +include ../compile.mk +