-
-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #748 from projecthorus/testing
v1.6.0 Release
- Loading branch information
Showing
61 changed files
with
8,180 additions
and
1,647 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
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
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,10 @@ | ||
# See https://pre-commit.com for more information | ||
# See https://pre-commit.com/hooks.html for more hooks | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.3.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
- id: end-of-file-fixer | ||
- id: check-added-large-files | ||
- id: check-executables-have-shebangs |
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,19 +1,24 @@ | ||
# Toplevel makefile to build all software | ||
AUTO_RX_VERSION := $(shell PYTHONPATH=./auto_rx python3 -m autorx.version 2>/dev/null || python -m autorx.version) | ||
|
||
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 | ||
# Uncomment to use clang as a compiler. | ||
#CC = clang | ||
#export CC | ||
|
||
all: | ||
$(MAKE) -C demod/mod | ||
$(MAKE) -C imet | ||
$(MAKE) -C utils | ||
$(MAKE) -C scan | ||
$(MAKE) -C mk2a | ||
cp $(PROGRAMS) auto_rx/ | ||
CFLAGS = -O3 -w -Wno-unused-variable -DVER_JSN_STR=\"$(AUTO_RX_VERSION)\" | ||
export CFLAGS | ||
|
||
.PHONY: | ||
clean: | ||
$(MAKE) -C demod/mod clean | ||
$(MAKE) -C imet clean | ||
$(MAKE) -C utils clean | ||
$(MAKE) -C scan clean | ||
$(MAKE) -C mk2a clean | ||
SUBDIRS := \ | ||
demod/mod \ | ||
imet \ | ||
mk2a \ | ||
scan \ | ||
utils \ | ||
|
||
all: $(SUBDIRS) | ||
|
||
clean: $(SUBDIRS) | ||
|
||
$(SUBDIRS): | ||
make -C $@ $(MAKECMDGOALS) | ||
|
||
.PHONY: all clean $(SUBDIRS) |
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
Oops, something went wrong.