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

