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

24 lines
252 B
Makefile

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