radiosonde_auto_rx/scan/Makefile

19 wiersze
473 B
Makefile

# 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)