mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 10:45:16 -07:00
Makefile: use pattern rules for build/.deps [ci skip] (#10366)
This allows for `make build/bin/nvim`, `make build/src/nvim/auto/funcs.generated.h` etc.
This commit is contained in:
parent
be6bf75d79
commit
7f6ff829aa
6
Makefile
6
Makefile
@ -184,4 +184,10 @@ appimage-%:
|
|||||||
|
|
||||||
lint: check-single-includes clint lualint pylint
|
lint: check-single-includes clint lualint pylint
|
||||||
|
|
||||||
|
build/%:
|
||||||
|
$(BUILD_CMD) -C build $(patsubst build/%,%,$@)
|
||||||
|
|
||||||
|
$(DEPS_BUILD_DIR)/%:
|
||||||
|
$(BUILD_CMD) -C $(DEPS_BUILD_DIR) $(patsubst $(DEPS_BUILD_DIR)/%,%,$@)
|
||||||
|
|
||||||
.PHONY: test lualint pylint functionaltest unittest lint clint clean distclean nvim libnvim cmake deps install appimage checkprefix
|
.PHONY: test lualint pylint functionaltest unittest lint clint clean distclean nvim libnvim cmake deps install appimage checkprefix
|
||||||
|
Loading…
Reference in New Issue
Block a user