mips/test/Makefile

18 lines
309 B
Makefile
Raw Normal View History

CC=afl-cc
LD=afl-cc
BIN=../bin
2024-09-22 20:02:42 +00:00
.PHONY: masm mld msim
2024-09-22 20:02:42 +00:00
masm:
make -C ../masm clean build CC=$(CC) LD=$(LD)
$(BIN)/masm/masm -o ./mld/test.o ./masm/test.asm
2024-09-22 20:02:42 +00:00
mld:
make -C ../mld clean build CC=$(CC) LD=$(LD)
$(BIN)/mld/mld -o ./msim/test ./mld/test.o
2024-09-22 20:02:42 +00:00
msim:
make -C ../msim clean build CC=$(CC) LD=$(LD)