first commit

This commit is contained in:
Peter Kleiweg
2026-03-02 15:34:37 +01:00
commit 36f051a8a9
50 changed files with 4241 additions and 0 deletions

13
Tzum/Makefile Normal file
View File

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