From 892384884947b037670ad3f284a594b662d3ae76 Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Wed, 22 Jun 2022 09:14:24 +0000 Subject: [PATCH] - removed old Makefile git-svn-id: http://moon:8086/svn/software/trunk/libsrc/radio@1054 b431acfa-c32f-4a4a-93f1-934dc6c82436 --- Makefile | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 Makefile 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 -