diff options
author | Karel Kočí <cynerd@email.cz> | 2016-11-06 13:28:13 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2016-11-06 13:28:13 +0100 |
commit | 73335bc22b24a65d8061962f58097c21608997c5 (patch) | |
tree | 9229712280f0ce7ce2276064f1408c2c9c99412c | |
parent | dd78f75171336b2cdff3eaad3af4523b1999940e (diff) | |
download | geml-73335bc22b24a65d8061962f58097c21608997c5.tar.gz geml-73335bc22b24a65d8061962f58097c21608997c5.tar.bz2 geml-73335bc22b24a65d8061962f58097c21608997c5.zip |
Don't suggest O environment variable in help
-rw-r--r-- | Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -1,12 +1,14 @@ # vim:ts=4:sw=4:noexpandtab MAKEFLAGS += --no-builtin-rules -# Default output path. Can be changed by enviroment to compile to different folder -# than default. -O ?= . # This variable can be overwritten to show executed commands Q ?= @ +# Default output path. This is used when output (writable) directory is different +# than project directory. You shouldn't be setting it by hand, but it is used in +# external Makefiles. +O ?= . + # Load configuration -include $(O)/.config.mk @@ -48,7 +50,6 @@ help: @echo " clean-docs - Removes generated documentation" @echo "Some enviroment variables to be defined:" @echo " Q - Define emty to show executed commands" - @echo " O - Output path." .PHONY: install install: |