summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f83b728..32a9866 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-all: clean proto goimports vet
+all: proto goimports vet
redo: clean proto goimports vet
@@ -9,8 +9,12 @@ vet:
goimports:
goimports -w *.go
-proto:
+proto: widget.pb.go table.pb.go
+
+widget.pb.go: widget.proto
autogenpb --proto widget.proto
+
+table.pb.go: table.proto
autogenpb --proto table.proto
clean: