Files
hash/Makefile
T
jens 39f5879d0d - enhanced build
git-svn-id: http://moon:8086/svn/software/trunk/libsrc/hash@13 b431acfa-c32f-4a4a-93f1-934dc6c82436
2014-07-20 11:27:06 +00:00

24 lines
236 B
Makefile

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