From: John Tsiombikas Date: Sun, 8 May 2022 18:40:50 +0000 (+0300) Subject: missing nasm rule for win32 X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=dosdemo;a=commitdiff_plain;h=c7d77b7df0cf1e0e3dda46fddbcb6d374a938cd8 missing nasm rule for win32 --- diff --git a/GNUmakefile b/GNUmakefile index 834db7b..3608ddf 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -52,6 +52,9 @@ $(bin): $(obj) imago mikmod %.o: %.asm nasm -f elf -o $@ $< +%.w32.o: %.asm + nasm -f coff -o $@ $< + %.w32.o: %.c $(CC) -o $@ $(CFLAGS) -c $<