mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-03 10:46:58 +01:00
Removed duplicate error message when running make without running configure first.
This commit is contained in:
parent
e6c68b606d
commit
3aecede214
1 changed files with 5 additions and 2 deletions
7
Makefile
7
Makefile
|
@ -188,10 +188,13 @@ endif
|
||||||
|
|
||||||
default: all-programs all-test-programs
|
default: all-programs all-test-programs
|
||||||
|
|
||||||
config.vars ccan/config.h: configure ccan/tools/configurator/configurator.c
|
ccan/config.h: config.vars configure ccan/tools/configurator/configurator.c
|
||||||
@if [ ! -f config.vars ]; then echo 'The 1990s are calling: use ./configure!' >&2; exit 1; fi
|
|
||||||
./configure --reconfigure
|
./configure --reconfigure
|
||||||
|
|
||||||
|
config.vars:
|
||||||
|
@echo 'File config.vars not found: you must run ./configure before running make.' >&2
|
||||||
|
@exit 1
|
||||||
|
|
||||||
include external/Makefile
|
include external/Makefile
|
||||||
include bitcoin/Makefile
|
include bitcoin/Makefile
|
||||||
include common/Makefile
|
include common/Makefile
|
||||||
|
|
Loading…
Add table
Reference in a new issue