diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-04-01 13:38:34 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-04-01 13:38:34 +0200 |
commit | 49ad54d50c2833ac80ac703753c93075c5bbeb11 (patch) | |
tree | 07f6dca1d57cf2afddf98b327d7f09f91740ffe0 /src/templating | |
parent | e68925c2b59e54eac8db9b87b1e71bd0fd86530d (diff) |
add missing Makefiles
Diffstat (limited to 'src/templating')
-rw-r--r-- | src/templating/test7/Makefile | 8 | ||||
-rw-r--r-- | src/templating/test8/Makefile | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/src/templating/test7/Makefile b/src/templating/test7/Makefile new file mode 100644 index 000000000..8e3a3b990 --- /dev/null +++ b/src/templating/test7/Makefile @@ -0,0 +1,8 @@ +.PHONY: test clean + +test: + @../dotest.sh json base.mustache + +clean: + rm -f resu.last vg.last + diff --git a/src/templating/test8/Makefile b/src/templating/test8/Makefile new file mode 100644 index 000000000..1a3e57914 --- /dev/null +++ b/src/templating/test8/Makefile @@ -0,0 +1,8 @@ +.PHONY: test clean + +test: + @../dotest.sh json must + +clean: + rm -f resu.last vg.last + |