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

24 lines
378 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 Frame.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