diff --git a/Makefile b/Makefile deleted file mode 100644 index 015a503..0000000 --- a/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -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 -