radiosonde_auto_rx/Makefile

21 wiersze
330 B
Makefile
Czysty Zwykły widok Historia

2022-09-21 20:07:16 +00:00
AUTO_RX_VERSION := $(shell PYTHONPATH=./auto_rx python -m autorx.version)
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 \
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)