mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 05:28:49 +00:00
Makefile: Replace literal cmake
usage with $(CMAKE)
This commit is contained in:
parent
20db22f0fe
commit
e296e3c505
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -25,10 +25,10 @@ PHONY: .begin
|
|||
(echo 'Please install CMake and then re-run the `make` command!' 1>&2 && false)
|
||||
|
||||
build/fish: build/$(BUILDFILE)
|
||||
cmake --build build
|
||||
$(CMAKE) --build build
|
||||
|
||||
build/$(BUILDFILE): build
|
||||
cd build; cmake .. -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -G "$(GENERATOR)" -DCMAKE_INSTALL_PREFIX="$(PREFIX)" -DCMAKE_EXPORT_COMPILE_COMMANDS=1
|
||||
cd build; $(CMAKE) .. -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -G "$(GENERATOR)" -DCMAKE_INSTALL_PREFIX="$(PREFIX)" -DCMAKE_EXPORT_COMPILE_COMMANDS=1
|
||||
|
||||
build:
|
||||
mkdir -p build
|
||||
|
|
Loading…
Reference in a new issue