2024-09-21 00:46:37 +00:00
|
|
|
CC=afl-cc
|
|
|
|
LD=afl-cc
|
|
|
|
|
|
|
|
BIN=../bin
|
|
|
|
|
2024-09-30 19:11:02 +00:00
|
|
|
.PHONY: all masm mld msim
|
|
|
|
|
|
|
|
all: masm mld msim
|
2024-09-21 00:46:37 +00:00
|
|
|
|
2024-09-22 20:02:42 +00:00
|
|
|
masm:
|
|
|
|
make -C ../masm clean build CC=$(CC) LD=$(LD)
|
2024-09-21 00:46:37 +00:00
|
|
|
$(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)
|
2024-09-21 00:46:37 +00:00
|
|
|
$(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)
|