diff options
author | Franck Cuny <franck@fcuny.net> | 2022-03-04 06:53:16 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-03-04 06:53:16 -0800 |
commit | c23c53c750cca556e6764fe2384d0197ec31bada (patch) | |
tree | b05c9b04d6674db932d0311558e3b96ad12aa8a9 | |
parent | emacs: configure the font correctly (diff) | |
download | emacs.d-c23c53c750cca556e6764fe2384d0197ec31bada.tar.gz |
Makefile: remove unused targets
Diffstat (limited to '')
-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 |