dos3d
diff Makefile.bcc @ 23:f2c2e45e8edd
reverted the mistaken push from the deepstone branch
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sat, 21 Sep 2013 18:22:11 +0300 |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/Makefile.bcc Sat Sep 21 18:22:11 2013 +0300 1.3 @@ -0,0 +1,26 @@ 1.4 +.AUTODEPEND 1.5 + 1.6 +obj = src\test.obj src\vga.obj src\timer.obj src\mouse.obj \ 1.7 + src\mingl.obj src\mglrast.obj src\mglgen.obj \ 1.8 + src\texture.obj src\palman.obj 1.9 +bin = dos3d.exe 1.10 + 1.11 +CC = bcc 1.12 + 1.13 +# 386 instructions, x87 fpu code, large memory model, optimize for speed 1.14 +CFLAGS = -3 -f287 -ml -O2 -G -Isrc 1.15 + 1.16 +$(bin): $(obj) 1.17 + $(CC) @&&| 1.18 +$(CFLAGS) -e$@ 1.19 +$(obj) 1.20 +| 1.21 + 1.22 +.SUFFIXES: .c .obj 1.23 + 1.24 +.c.obj: 1.25 + $(CC) $(CFLAGS) -o$@ -c $< 1.26 + 1.27 +clean: 1.28 + del src\*.obj 1.29 + del $(bin)