diff options
author | Franck Cuny <franck@fcuny.net> | 2022-05-31 09:21:58 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-06-01 11:19:01 -0700 |
commit | b734f7c0cd4fd504cb310f70bcafc825bd588eb8 (patch) | |
tree | 95c4052479bcf49b51a5a00865895af5f0637289 /Makefile | |
parent | feat(cheeseboard): module to get the list of pizzas from cheeseboard (diff) | |
download | emacs.d-b734f7c0cd4fd504cb310f70bcafc825bd588eb8.tar.gz |
ref(Makefile): drop go setup
Change-Id: I55a95b3d358f79ba8f34a9ffecb97d0fbc347272 Reviewed-on: https://cl.fcuny.net/c/emacs.d/+/202 Reviewed-by: Franck Cuny <franck@fcuny.net>
Diffstat (limited to '')
-rw-r--r-- | Makefile | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/Makefile b/Makefile index d23d065..b6b596c 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,8 @@ XDG_CONFIG=$(HOME)/.config/ LN = @ln -sf -.PHONY: go -go: - @go install golang.org/x/tools/gopls@latest - @go install honnef.co/go/tools/cmd/staticcheck@latest - @go install github.com/go-delve/delve/cmd/dlv@latest - .PHONY: emacs -emacs: go +emacs: $(LN) $(PWD)/emacs $(XDG_CONFIG) $(LN) $(PWD)/aspell.en.pws $(HOME)/.aspell.en.pws |