19 lines
201 B
Makefile
19 lines
201 B
Makefile
NASM = nasm
|
|
|
|
.SUFFIXES:
|
|
.SUFFIXES: .asm .com
|
|
|
|
all: dosclock.com
|
|
|
|
.asm.com:
|
|
$(NASM) -fbin -o $@ $<
|
|
|
|
clean:
|
|
rm -f *.com
|
|
|
|
distclean: clean
|
|
|
|
run: dosclock.com
|
|
dosbox $<
|
|
|
|
.PHONY: all clean distclean run
|