Files
radio/Makefile
T
jens adbcf7898c - moved Frame.hpp/cpp
git-svn-id: http://moon:8086/svn/software/trunk/libsrc/radio@113 b431acfa-c32f-4a4a-93f1-934dc6c82436
2015-01-05 12:10:03 +00:00

24 lines
370 B
Makefile

include ../config.mk
SRCDIR := .
OBJS := real.o cpx.o ringbuf.o equalizer.o interpolation.o agc.o nco.o statistics.o symbol.o synchronization.o
LIB := $(BUILD_DIR)/libradio.a
INCLUDES := . ..
DEFINES := radio_float_t=float fir_float_t=float
all : $(LIB)
$(LIB) : $(OBJS)
$(AR) -r $(LIB) $(OBJS)
clean:
rm -f *.o
rm -f *.a
.PHONY: clean
include ../compile.mk