Analog clock program for MS-DOS
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.
|
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
|
|
|