forked from projecthorus/radiosonde_auto_rx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
One hack to rule them all.
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Toplevel makefile to build all software | ||
|
||
PROGRAMS := scan/dft_detect demod/mod/rs41mod demod/mod/dfm09mod demod/mod/rs92mod demod/mod/lms6mod demod/mod/lms6Xmod demod/mod/meisei100mod demod/mod/m10mod demod/mod/mXXmod demod/mod/imet54mod mk2a/mk2a_lms1680 imet/imet1rs_dft utils/fsk_demod | ||
|
||
all: | ||
$(MAKE) -C demod/mod | ||
$(MAKE) -C imet | ||
$(MAKE) -C utils | ||
$(MAKE) -C scan | ||
$(MAKE) -C mk2a | ||
cp $(PROGRAMS) auto_rx/ | ||
|
||
.PHONY: | ||
clean: | ||
$(MAKE) -C demod/mod clean | ||
$(MAKE) -C imet clean | ||
$(MAKE) -C utils clean | ||
$(MAKE) -C scan clean | ||
$(MAKE) -C mk2a clean |