- initial version

git-svn-id: http://moon:8086/svn/software/trunk/libsrc/cpp@90 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2014-12-20 17:56:16 +00:00
commit b0490ad5f2
4 changed files with 325 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
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