missing nasm rule for win32
authorJohn Tsiombikas <nuclear@member.fsf.org>
Sun, 8 May 2022 18:40:50 +0000 (21:40 +0300)
committerJohn Tsiombikas <nuclear@member.fsf.org>
Sun, 8 May 2022 18:40:50 +0000 (21:40 +0300)
GNUmakefile

index 834db7b..3608ddf 100644 (file)
@@ -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 $<