removed clang-format and clang_complete files from the repo
[dosdemo] / GNUmakefile
index 834db7b..767026f 100644 (file)
@@ -8,7 +8,7 @@ bin = demo
 asmsrc += cspr/dbgfont.asm cspr/confont.asm
 bindata = data/loading.img
 
-inc = -I/usr/local/include -Isrc -Isrc/3dgfx -Isrc/scr -Isrc/glut -Ilibs \
+inc = -I/usr/local/include -Isrc -Isrc/3dgfx -Isrc/scr -Isrc/utils -Isrc/glut -Ilibs \
          -Ilibs/imago/src -Ilibs/mikmod/include
 def = -DMINIGLUT_USE_LIBC -DMIKMOD_STATIC
 warn = -pedantic -Wall -Wno-unused-variable -Wno-unused-function -Wno-address
@@ -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 $<