19 lines
333 B
Makefile
19 lines
333 B
Makefile
CC=afl-cc
|
|
LD=afl-cc
|
|
|
|
BIN=../bin
|
|
|
|
.PHONY: all masm mld msim
|
|
|
|
all: 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)
|