8 lines
64 B
Makefile
8 lines
64 B
Makefile
|
all: gen
|
||
|
|
||
|
test: gen
|
||
|
go test ./...
|
||
|
|
||
|
gen:
|
||
|
(cd core && make gen)
|