From 3b401b823ca98e6329450874eadeaa5f5c120cd1 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Mon, 1 Jun 2020 15:23:05 +0200 Subject: Add tests for manually testing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- tests/Makefile | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 tests/Makefile (limited to 'tests/Makefile') diff --git a/tests/Makefile b/tests/Makefile new file mode 100644 index 0000000..db5caa7 --- /dev/null +++ b/tests/Makefile @@ -0,0 +1,32 @@ +.POSIX: + +BIN =\ + abort.t\ + cont.t\ + exec.t\ + exit.t\ + fork.t\ + fork-stop.t\ + kill.t\ + raise.t\ + siginfo.t\ + signal.t\ + stop.t\ + threads.t\ + tstp.t\ + vfork.t\ + vfork-exec.t + +all: $(BIN) +$(BIN): $(@:.t=.c) + +.c.t: + $(CC) -static -pthread -Og -g -o $@ $< -D_XOPEN_SOURCE=700 + +clean: + -rm -f -- $(BIN) + +.SUFFIXES: +.SUFFIXES: .t .c + +.PHONY: all clean -- cgit v1.2.3-70-g09d2