summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-05-21 22:07:40 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-05-21 22:07:40 -0400
commit08307fb84160602da12ba4d1b118c859e8a73cdb (patch)
treeb8f3bf7c4df3904937afc964ae36803567e78719 /Makefile
parent9a6621659937c55c6005a1fa6ce9641a4ceff385 (diff)
Add dispatch pub/sub
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 12 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 45d402c99..86a579d66 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,6 @@
TS_FILES = \
tsconfig.json \
+ dispatch.ts \
main.ts \
msg.pb.d.ts \
msg.pb.js \
@@ -10,7 +11,17 @@ TS_FILES = \
util.ts \
v8_source_maps.ts
-deno: assets.go msg.pb.go main.go
+GO_FILES = \
+ assets.go \
+ deno_dir.go \
+ dispatch.go \
+ handlers.go \
+ main.go \
+ main_test.go \
+ msg.pb.go \
+ util.go
+
+deno: $(GO_FILES)
go build -o deno
assets.go: dist/main.js