Skip to content
Snippets Groups Projects
Commit 3de4dcd8 authored by Henry Weller's avatar Henry Weller
Browse files

AllwmakeParseArguments: Added "-update" option

Updates lnInclude directories and dep files before compilation.  This is
useful to apply following a "git pull" to ensure consistency between the
source files, dep files and links.
parent f23ab37e
No related branches found
No related tags found
No related merge requests found
......@@ -55,6 +55,7 @@ options:
-j Compile using all local cores/hyperthreads
-jN or -j N Compile using N cores/hyperthreads
-no-scheduler Compile without wmakeScheduler
-update Update lnInclude directories and dep files
USAGE
# Print options for building code documentation
......@@ -122,6 +123,11 @@ do
-no-scheduler)
unset WM_SCHEDULER
;;
# Update lnInclude directories and dep files following a pull
-update)
wrmdep -update
wmakeLnIncludeAll
;;
# Generate documentation
doc)
test -n "$genDoc" || usage "invalid option '$1'"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment