diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2022-09-26 12:39:26 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2022-09-26 13:24:24 +0200 |
commit | 5863040f9323e210df0908333c6e85d63af000c0 (patch) | |
tree | 8c8838c68b7566b42d9dd84abe7212e93b1740ea /xS/Makefile | |
parent | f891e5ca638ead13485cc490320e74d698641623 (diff) | |
download | xK-5863040f9323e210df0908333c6e85d63af000c0.tar.gz xK-5863040f9323e210df0908333c6e85d63af000c0.tar.xz xK-5863040f9323e210df0908333c6e85d63af000c0.zip |
Update documentation, clean up
Diffstat (limited to 'xS/Makefile')
-rw-r--r-- | xS/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/xS/Makefile b/xS/Makefile new file mode 100644 index 0000000..55ad4d2 --- /dev/null +++ b/xS/Makefile @@ -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) |