forked from ElementsProject/lightning
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make: Add missing dependency between schemas and schema bundle
Reported-by: microsatoshi
- Loading branch information
Showing
2 changed files
with
13 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,15 @@ | ||
#! /usr/bin/make | ||
|
||
# Files that `msggen` generates for itself, this does not include the | ||
# artifacts that we will be using `msggen` to generate, but rather all | ||
# the files required to work itself. This is distinct from | ||
# `MSGGEN_GENALL`, which consists only of the files generated using | ||
# `msggen`. `msggen.json` is special, it contains information that must not change, therefore it is not included in `clean` calls. | ||
MSGGEN_GEN_ALL = \ | ||
contrib/msggen/msggen/schema.json | ||
|
||
MSGGEN_DATA = \ | ||
.msggen.json | ||
|
||
contrib/msggen/msggen/schema.json: ${SCHEMAS} | ||
PYTHONPATH=contrib/msggen ${PYTHON} contrib/msggen/msggen/__main__.py bundle doc/schemas |