fixed bugs, added progress bar, and more
[dosdemo] / Makefile
index f3630fa..54e4148 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -5,6 +5,7 @@ dep = $(obj:.odj=.dep)
 bin = demo.exe
 
 asmsrc += cspr/dbgfont.asm cspr/confont.asm
+bindata = data/loading.img
 
 ifeq ($(findstring COMMAND.COM, $(SHELL)), COMMAND.COM)
        hostsys = dos
@@ -36,6 +37,8 @@ $(bin): $(obj) imago anim
 %.odj: %.asm
        nasm -f coff -o $@ $<
 
+src/data.odj: src/data.asm $(bindata)
+
 ifneq ($(hostsys), dos)
 -include $(dep)
 endif