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.
20 lines
201 B
20 lines
201 B
2 years ago
|
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
|