aboutsummaryrefslogtreecommitdiff
path: root/xP/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'xP/Makefile')
-rw-r--r--xP/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/xP/Makefile b/xP/Makefile
index 3c52146..eb0c8f5 100644
--- a/xP/Makefile
+++ b/xP/Makefile
@@ -1,13 +1,15 @@
.POSIX:
.SUFFIXES:
-outputs = xP proto.go public/mithril.js
+outputs = xP proto.go public/proto.js public/mithril.js
all: $(outputs)
xP: xP.go proto.go
go build -o $@
proto.go: ../xC-gen-proto.awk ../xC-gen-proto-go.awk ../xC-proto
awk -f ../xC-gen-proto.awk -f ../xC-gen-proto-go.awk ../xC-proto > $@
+public/proto.js: ../xC-gen-proto.awk ../xC-gen-proto-js.awk ../xC-proto
+ awk -f ../xC-gen-proto.awk -f ../xC-gen-proto-js.awk ../xC-proto > $@
public/mithril.js:
curl -Lo $@ https://unpkg.com/mithril/mithril.js
clean: