deepstone

view Makefile.bcc @ 0:f04884489bad

dos3d initial import
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 21 Nov 2011 06:14:01 +0200
parents
children 8c9a63a902d5
line source
1 .AUTODEPEND
3 obj = src\test.obj src\vga.obj src\timer.obj src\mouse.obj \
4 src\mingl.obj src\mglrast.obj src\mglgen.obj
5 bin = dos3d.exe
7 CC = bcc
9 # 286 instructions, large memory model
10 CFLAGS = -1 -f287 -ml -O -G -Isrc
12 $(bin): $(obj)
13 $(CC) @&&|
14 $(CFLAGS) -e$@
15 $(obj)
16 |
18 .SUFFIXES: .c .obj
20 .c.obj:
21 $(CC) $(CFLAGS) -o$@ -c $<
23 clean:
24 del src\*.obj
25 del $(bin)