From 9282ff7194b9e6c060ecb618077f1ae813c9cf50 Mon Sep 17 00:00:00 2001 From: jlamothe Date: Thu, 2 Nov 2023 19:47:38 +0000 Subject: [PATCH] test lib module --- mkfile | 2 ++ test/lib.c | 10 ++++++++++ test/mkfile | 6 +++++- test/qfmt.rc | 6 ------ 4 files changed, 17 insertions(+), 7 deletions(-) create mode 100644 test/lib.c delete mode 100755 test/qfmt.rc diff --git a/mkfile b/mkfile index 6bb5397..3b7e09b 100644 --- a/mkfile +++ b/mkfile @@ -3,6 +3,8 @@ qfmt: main.$O lib.$O $LD $LDFLAGS -o qfmt main.$O lib.$O +test: qfmt + TEST=test +#include + +void +main() +{ + exits(0); +} + +//jl diff --git a/test/mkfile b/test/mkfile index 1b6ea53..0a5e0e6 100644 --- a/test/mkfile +++ b/test/mkfile @@ -1,6 +1,10 @@