X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=dosdemo;a=blobdiff_plain;f=Makefile.dj;h=af00af72a048a9521292f4c144515728a63ddcc5;hp=9306382cbd0610f91f163d7d97df2a8028fd7edf;hb=c9b5ba5cdb87d26e843a7f20c0ad5de3ebef0eab;hpb=ba648ddfc62fc6d3f47294aa8bfc10ea6ca3f479 diff --git a/Makefile.dj b/Makefile.dj index 9306382..af00af7 100644 --- a/Makefile.dj +++ b/Makefile.dj @@ -4,6 +4,8 @@ obj = $(src:.c=.cof) $(asmsrc:.asm=.cof) dep = $(obj:.cof=.dep) bin = demo.exe +asmsrc += cspr/dbgfont.asm cspr/confont.asm + ifeq ($(findstring COMMAND.COM, $(SHELL)), COMMAND.COM) hostsys = dos else @@ -21,6 +23,11 @@ AR = $(TOOLPREFIX)ar CFLAGS = $(warn) -march=pentium $(dbg) $(opt) $(inc) LDFLAGS = libs/imago/imago.dja libs/anim/anim.dja libs/mikmod/dos/libmikmod.a +ifneq ($(hostsys), dos) +.PHONY: all +all: data $(bin) +endif + $(bin): $(obj) imago anim mikmod $(CC) -o $@ -Wl,-Map=ld.map $(obj) $(LDFLAGS) @@ -74,4 +81,8 @@ clean: cleandep: rm -f $(dep) + +.PHONY: data +data: + @tools/procdata endif