From 39f5879d0df45751e4af97c7603debdd7d4a9700 Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Sun, 20 Jul 2014 11:27:06 +0000 Subject: [PATCH] - enhanced build git-svn-id: http://moon:8086/svn/software/trunk/libsrc/hash@13 b431acfa-c32f-4a4a-93f1-934dc6c82436 --- Makefile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Makefile 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 +