Add makefile for scan

pull/384/head
Joel Stanley 2021-02-08 20:50:33 +10:30
rodzic ef8d9af8e8
commit aa09ef2beb
1 zmienionych plików z 18 dodań i 0 usunięć

18
scan/Makefile 100644
Wyświetl plik

@ -0,0 +1,18 @@
# Makefile for scan programs
# Auto_RX version number - needs to match the contents of autorx/__init__.py
# This can probably be done automatically.
#AUTO_RX_VERSION="\"1.4.1-beta8\""
AUTO_RX_VERSION := $(shell PYTHONPATH=../auto_rx python -m autorx.version)
CFLAGS = -O3 -Wall -Wno-unused-variable -DVER_JSN_STR=\"$(AUTO_RX_VERSION)\" -DNOC34C50
LDLIBS = -lm
PROGRAMS := dft_detect
all: $(PROGRAMS)
dft_detect: dft_detect.o
clean:
$(RM) $(PROGRAMS) $(PROGRAMS:=.o)