radiosonde_auto_rx/Makefile

26 wiersze
446 B
Makefile
Czysty Zwykły widok Historia

AUTO_RX_VERSION := $(shell PYTHONPATH=./auto_rx python3 -m autorx.version 2>/dev/null || python -m autorx.version)
2022-09-21 20:07:16 +00:00
2022-09-24 02:19:37 +00:00
# Uncomment to use clang as a compiler.
#CC = clang
#export CC
CFLAGS = -O3 -w -Wno-unused-variable -DVER_JSN_STR=\"$(AUTO_RX_VERSION)\"
2022-09-21 20:07:16 +00:00
export CFLAGS
2022-09-20 22:05:21 +00:00
SUBDIRS := \
demod/mod \
imet \
mk2a \
scan \
utils \
weathex \
2022-09-20 22:05:21 +00:00
all: $(SUBDIRS)
2022-09-20 22:05:21 +00:00
clean: $(SUBDIRS)
2022-09-20 22:05:21 +00:00
$(SUBDIRS):
make -C $@ $(MAKECMDGOALS)
.PHONY: all clean $(SUBDIRS)