aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2024-05-08 12:24:46 +0200
committerDmitry Vyukov <dvyukov@google.com>2024-05-08 12:26:59 +0000
commit4dbd403fd0978b91ffe3bb2f2a749511591644dd (patch)
treea43a92648849d5127c4165b744e05e38c90bf9ee /Makefile
parentdc488c459880e3f3af557dc336697138ecb8228b (diff)
pkg/csource: replace go:generate with go:embed
go:embed is a more modern way to do this and it does not require a special Makefile step. Since go:embed cannot use paths that contains "..", the actual embeding is moved to executor package.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f13d125f1..273043d00 100644
--- a/Makefile
+++ b/Makefile
@@ -240,7 +240,7 @@ generate:
$(MAKE) format
generate_go: format_cpp
- $(GO) generate ./pkg/csource ./executor ./pkg/ifuzz ./pkg/build
+ $(GO) generate ./executor ./pkg/ifuzz ./pkg/build
$(GO) generate ./vm/proxyapp
generate_rpc: