- Works, but has not yet been tested with real code - Code analysis not yet implemented - Compiled by default
7 lines
69 B
Makefile
7 lines
69 B
Makefile
CC?=gcc
|
|
|
|
all:
|
|
${CC} -DTEST=1 -O0 -g disasm.c
|
|
|
|
clean:
|
|
rm -f ./a.out
|