AS      =nasm
ASFLAGS =-O0 -f bin

.PHONY: clean

all: streamppt.txt

%.txt: %.asm
	$(AS) $(ASFLAGS) -o $@ $<

streamppt.txt: streamppt.asm

clean:
	rm -f *.txt core *.core
