From 85471efb4c740bb775c9ebdb10f775620c979598 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Sun, 22 Sep 2024 16:02:42 -0400 Subject: mld done --- test/Makefile | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) (limited to 'test/Makefile') diff --git a/test/Makefile b/test/Makefile index 1a97dd6..64f902d 100644 --- a/test/Makefile +++ b/test/Makefile @@ -3,18 +3,15 @@ LD=afl-cc BIN=../bin -none: +.PHONY: masm mld msim -clean: - rm -fr $(BIN) - -masm: clean - make -C ../masm build CC=$(CC) LD=$(LD) +masm: + make -C ../masm clean build CC=$(CC) LD=$(LD) $(BIN)/masm/masm -o ./mld/test.o ./masm/test.asm -mld: clean - make -C ../mld build CC=$(CC) LD=$(LD) +mld: + make -C ../mld clean build CC=$(CC) LD=$(LD) $(BIN)/mld/mld -o ./msim/test ./mld/test.o -msim: clean - make -C ../msim build CC=$(CC) LD=$(LD) +msim: + make -C ../msim clean build CC=$(CC) LD=$(LD) -- cgit v1.2.3-freya