Automated FLE processing
This commit is contained in:
parent
89d286f0a0
commit
76ec265c92
3 changed files with 20 additions and 7 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
# Generated outputs
|
||||
/out
|
18
Makefile
Normal file
18
Makefile
Normal file
|
@ -0,0 +1,18 @@
|
|||
|
||||
all: fle
|
||||
|
||||
# Output directory for targets
|
||||
outdir := out
|
||||
$(outdir):
|
||||
mkdir -p $@
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm -r $(outdir)
|
||||
|
||||
# Generate ADIF files from FLE
|
||||
fle_src := $(wildcard src/*.fle)
|
||||
fle_adi := $(patsubst src/%.fle,$(outdir)/%.adi,$(fle_src))
|
||||
.PHONY: fle
|
||||
fle: $(fle_adi)
|
||||
$(outdir)/%.adi: src/%.fle $(outdir)
|
||||
FLEcli adif -o $< $@
|
|
@ -1,7 +0,0 @@
|
|||
mycall k9api
|
||||
mygrid em47cx
|
||||
date 2024-03-12
|
||||
|
||||
40m 7.258 ssb
|
||||
# busted
|
||||
# 0216 k8aep pota k-1272 ,59
|
Loading…
Add table
Reference in a new issue