This commit is contained in:
Kurt Moraw
2020-10-27 16:41:16 +01:00
parent 647db711c4
commit 3deb0a09fd
514 changed files with 242695 additions and 2 deletions
+13
View File
@@ -0,0 +1,13 @@
CFLAGS=-O3 -Wall
LDLIBS= -L. -lpthread -lfftw3 -lm -lzip
CC=c++
PROGNAME=qo100modem
OBJ=qo100modem.o main_helper.o udp.o frame_packer.o scrambler.o crc16.o fec.o fft.o constellation.o arraysend.o
all: qo100modem
qo100modem: $(OBJ)
$(CC) -g -o $@ $^ $(LDFLAGS) $(LDLIBS)
clean:
rm -f *.o qo100modem