diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Makefile b/Makefile index 31a77ed..d23d065 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,6 @@ XDG_CONFIG=$(HOME)/.config/ LN = @ln -sf -.PHONY: xdg_config -xdg_config: - @mkdir -p $(XDG_CONFIG) - .PHONY: go go: @go install golang.org/x/tools/gopls@latest @@ -12,7 +8,7 @@ go: @go install github.com/go-delve/delve/cmd/dlv@latest .PHONY: emacs -emacs: xdg_config go +emacs: go $(LN) $(PWD)/emacs $(XDG_CONFIG) $(LN) $(PWD)/aspell.en.pws $(HOME)/.aspell.en.pws @@ -21,4 +17,4 @@ setup: @git config --local user.email "franck@fcuny.net" @git config --local user.name "Franck Cuny" -all: setup xdg_config emacs check-dead +all: setup emacs |