mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-13 09:57:51 +08:00
13 lines
163 B
Makefile
13 lines
163 B
Makefile
EXE := das
|
|
|
|
main:
|
|
go build -o $(EXE) ./main
|
|
|
|
z-%.go: %.go
|
|
go tool cgo -godefs $< > $@
|
|
|
|
pre-commit: edit/tty/z-winsize.go
|
|
|
|
.PHONY: main pre-commit
|
|
.DEFAULT: main
|