mirror of
https://github.com/dj0abr/SSB_HighSpeed_Modem.git
synced 2024-11-15 08:31:53 -05:00
14 lines
303 B
Makefile
14 lines
303 B
Makefile
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
|