From c7d77b7df0cf1e0e3dda46fddbcb6d374a938cd8 Mon Sep 17 00:00:00 2001 From: John Tsiombikas Date: Sun, 8 May 2022 21:40:50 +0300 Subject: [PATCH] missing nasm rule for win32 --- GNUmakefile | 3 +++ 1 file changed, 3 insertions(+) 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 $< -- 1.7.10.4