diff options
author | H. P. <harald.p.@xmart.de> | 2018-11-01 13:30:58 +0100 |
---|---|---|
committer | H. P. <harald.p.@xmart.de> | 2018-11-01 13:30:58 +0100 |
commit | 0632591996893fe136a1f2fe44d9b9f404f41f3e (patch) | |
tree | 7340edbe7c212da3db45a83219147143a3268c8d /Makefile | |
download | fedora-laptop-0632591996893fe136a1f2fe44d9b9f404f41f3e.tar.bz2 |
Initial commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e8066d0 --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +VERSION = 3.81 + +all: tree filelists + +tree: + @make -f aux/git-checkers/Makefile.readme +readme: tree + +#fstree-exists: +# @command -v fstree >/dev/null 2>&1 +# THEY'RE TAKING THE HOBBITS TO ISENGARD! +filelists: + @[ -e ./aux/git-checkers/filelistgen ]&&./aux/git-checkers/filelistgen||true + +@PHONY: help +help: + @echo -e "help:\t\tThis help" + @echo -e "all:\t\tall of the following targets:" + @echo -e "tree," + @echo -e "readme:\t\tGenerate Readme.md with file tree" + @echo -e "filelists:\tGenerates all code checker file lists" |