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

24 lines
233 B
Makefile

include ../config.mk
SRCDIR := .
OBJS := crc.o
LIB := $(BUILD_DIR)/libcrc.a
INCLUDES := . ..
DEFINES :=
all : $(LIB)
$(LIB) : $(OBJS)
$(AR) -r $(LIB) $(OBJS)
clean:
rm -f *.o
rm -f *.a
.PHONY: clean
include ../compile.mk