From a4c6bd2f3e9b3d9ef8696132c1f353186af29393 Mon Sep 17 00:00:00 2001 From: Peter McGoron Date: Sat, 31 Jul 2021 20:39:04 -0400 Subject: [PATCH] add libscomp.a --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 8bb38f0..48f7f43 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,8 @@ +OUT=libscomp.a TESTS=test/input test/exec +$(OUT): input.o exec.o + $(AR) rcs $(OUT) input.o exec.o tests: $(TESTS) for i in $(TESTS); do ./$$i -v; done