diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2019-08-11 18:55:19 +0200 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2019-08-11 18:55:19 +0200 |
commit | 2ec6f81de8d725d515cb014f6910400185594fbc (patch) | |
tree | 0b3d6ca2ba3bda822ade3c7641988a29d8746863 /resources | |
parent | e4247ab14e56fc8f99857f18fb50b7374e8fd8e7 (diff) |
Massive Makefile update
Instead of hard coaded minute list in Makefiles, the list is
each minutes lists in Makefile is compiled from an shell
*ls* command. Need change in how help works, and therefore all
Makefiles coupled to Makefile-common
Diffstat (limited to 'resources')
-rw-r--r-- | resources/Makefile-common | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/Makefile-common b/resources/Makefile-common index 80713a6..c64793f 100644 --- a/resources/Makefile-common +++ b/resources/Makefile-common @@ -62,7 +62,7 @@ send: help: @echo 'This script do not run without arguments. Run for example:' @echo - @echo ' $ make 2014-02-13-board-notes.pdf' + @for f in $(SEND_FILES) ; do echo " $ make $$f"; done @echo ' $ make all' @echo ' $ make send' @echo ' $ make clean' |