diff options
author | Mattias Andrée <maandree@member.fsf.org> | 2015-12-08 20:25:54 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@member.fsf.org> | 2015-12-08 20:25:54 +0100 |
commit | b9c23e3a7123452dcfefb2fee97ba1cdc18ee2ad (patch) | |
tree | 2761c44427abe1896b32bde30dd77c5bdd971516 /mk/all.mk | |
parent | Packaging moved to my collective repo for them (not needed now that it is documented in INSTALL.) (diff) | |
download | scrotty-b9c23e3a7123452dcfefb2fee97ba1cdc18ee2ad.tar.gz scrotty-b9c23e3a7123452dcfefb2fee97ba1cdc18ee2ad.tar.bz2 scrotty-b9c23e3a7123452dcfefb2fee97ba1cdc18ee2ad.tar.xz |
a magical makefile, using a collection of submakefiles that are completely reusable without modifications
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
Diffstat (limited to '')
-rw-r--r-- | mk/all.mk | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/mk/all.mk b/mk/all.mk new file mode 100644 index 0000000..7b00995 --- /dev/null +++ b/mk/all.mk @@ -0,0 +1,27 @@ +# Copyright (C) 2015 Mattias Andrée <maandree@member.fsf.org> +# +# Copying and distribution of this file, with or without modification, +# are permitted in any medium without royalty provided the copyright +# notice and this notice are preserved. This file is offered as-is, +# without any warranty. + + +#=== This file includes all the other files in appropriate order. ===# + +ifndef Q +A = \e[35m +Z = [m +endif + +include mk/path.mk +include mk/empty.mk +include mk/tools.mk +include mk/copy.mk +include mk/lang-c.mk +include mk/texinfo.mk +include mk/man.mk +include mk/i18n.mk +include mk/clean.mk +include mk/dist.mk +include mk/tags.mk + |