From 940fef353e6551f721651db79cb135219191ad9e Mon Sep 17 00:00:00 2001 From: Björn Persson Date: Mon, 16 Dec 2013 17:27:40 +0100 Subject: the beginning of a testsuite --- Makefile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4a59d3b --- /dev/null +++ b/Makefile @@ -0,0 +1,23 @@ +# Makefile for running Comfignat's testsuite +# Copyright 2013 B. Persson, Bjorn@Rombobeorn.se +# +# This material is provided as is, with absolutely no warranty expressed +# or implied. Any use is at your own risk. +# +# Permission is hereby granted to use or copy this makefile +# for any purpose, provided the above notices are retained on all copies. +# Permission to modify the code and to distribute modified code is granted, +# provided the above notices are retained, and a notice that the code was +# modified is included with the above copyright notice. + + +include comfignat.mk + +check: + "${srcdir}/testsuite/run_tests" "${srcdir}" "${builddir}" + +clean:: + rm -Rf "${builddir}/testruns" + +base: + echo "You don't build Comfignat. This makefile is for the testsuite." -- cgit v1.2.3 From dfc4c5cdce886fa7261258a1b40d463ce5c39de1 Mon Sep 17 00:00:00 2001 From: Björn Persson Date: Thu, 26 Dec 2013 20:29:08 +0100 Subject: Don't echo the echo command. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 4a59d3b..2306c69 100644 --- a/Makefile +++ b/Makefile @@ -20,4 +20,4 @@ clean:: rm -Rf "${builddir}/testruns" base: - echo "You don't build Comfignat. This makefile is for the testsuite." + @echo "You don't build Comfignat. This makefile is for the testsuite." -- cgit v1.2.3