- removed old Makefile

git-svn-id: http://moon:8086/svn/software/trunk/libsrc/radio@1054 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2022-06-22 09:14:24 +00:00
parent a68283618d
commit 8923848849
-23
View File
@@ -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