projects
/
dosdemo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3f4019d
)
missing nasm rule for win32
author
John Tsiombikas
<nuclear@member.fsf.org>
Sun, 8 May 2022 18:40:50 +0000
(21:40 +0300)
committer
John Tsiombikas
<nuclear@member.fsf.org>
Sun, 8 May 2022 18:40:50 +0000
(21:40 +0300)
GNUmakefile
patch
|
blob
|
history
diff --git
a/GNUmakefile
b/GNUmakefile
index
834db7b
..
3608ddf
100644
(file)
--- 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 $<