This commit is contained in:
Peter Kleiweg
2026-04-15 13:41:23 +02:00
parent 8e43d5b97b
commit bd0e82c8c9
8 changed files with 439 additions and 1 deletions

13
Oog/Makefile Normal file
View File

@@ -0,0 +1,13 @@
all: \
xml2txt \
metadata \
oog
xml2txt: cmd/xml2txt/*.go
go build -o $@ $^
metadata: cmd/metadata/*.go
go build -o $@ $^
oog: cmd/oog/*.go
go build -o $@ $^