summaryrefslogtreecommitdiff
path: root/test/Makefile
blob: 64f902d53c886c477604944bc60c939076005485 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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)