Spartanic self-hosting assembler for 8086
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
EMU = emu2 |
|
METRIC = stat -c '%8s %n' |
|
|
|
default: testsym.com |
|
|
|
%.com: %.asm *.inc |
|
nasm -l $(@:.com=.lst) -s -o $@ $< |
|
$(METRIC) $@ |
|
|
|
clean: |
|
rm -f *.com *.lst *.log
|
|
|