mips/test/Makefile
2024-09-22 16:02:42 -04:00

17 lines
309 B
Makefile

CC=afl-cc
LD=afl-cc
BIN=../bin
.PHONY: masm mld msim
masm:
make -C ../masm clean build CC=$(CC) LD=$(LD)
$(BIN)/masm/masm -o ./mld/test.o ./masm/test.asm
mld:
make -C ../mld clean build CC=$(CC) LD=$(LD)
$(BIN)/mld/mld -o ./msim/test ./mld/test.o
msim:
make -C ../msim clean build CC=$(CC) LD=$(LD)