Update documentation, clean up

This commit is contained in:
2022-09-26 12:39:26 +02:00
parent f891e5ca63
commit 5863040f93
10 changed files with 41 additions and 17 deletions

13
xS/Makefile Normal file
View File

@@ -0,0 +1,13 @@
.POSIX:
.SUFFIXES:
AWK = env LC_ALL=C awk
outputs = xS xS-replies.go
all: $(outputs)
xS: xS.go xS-replies.go
go build -o $@
xS-replies.go: xS-gen-replies.awk xS-replies
$(AWK) -f xS-gen-replies.awk xS-replies > $@
clean:
rm -f $(outputs)