From 092ea2b3a3d524d37de17a81c15461b234650011 Mon Sep 17 00:00:00 2001 From: jlamothe Date: Fri, 3 Nov 2023 23:24:10 +0000 Subject: [PATCH] moved tests into main directory --- mkfile | 5 +++-- test/lib.c => test.c | 1 + test/mkfile | 11 ----------- 3 files changed, 4 insertions(+), 13 deletions(-) rename test/lib.c => test.c (62%) delete mode 100644 test/mkfile diff --git a/mkfile b/mkfile index 3b7e09b..3fe04e7 100644 --- a/mkfile +++ b/mkfile @@ -3,9 +3,10 @@ qfmt: main.$O lib.$O $LD $LDFLAGS -o qfmt main.$O lib.$O -test: qfmt +$O.qfmt: test.$O lib.$O + $LD $LDFLAGS -o $O.qfmt test.$O lib.$O -TEST=test +TEST=qfmt