rayzor
diff Makefile @ 6:a68dbf80d547
finally showing something ... :)
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Mon, 07 Apr 2014 06:04:11 +0300 |
parents | 9035507275d6 |
children | 70e332156d02 |
line diff
1.1 --- a/Makefile Sun Apr 06 02:43:24 2014 +0300 1.2 +++ b/Makefile Mon Apr 07 06:04:11 2014 +0300 1.3 @@ -5,15 +5,17 @@ 1.4 obj = $(modelobj) $(rendobj) $(scnobj) $(sysobj) 1.5 bin = rayzor.exe 1.6 1.7 +#dbg = -d2 1.8 + 1.9 CC = wcc386 1.10 CXX = wpp386 1.11 -CFLAGS = -5 -fp5 -otexan -zq -bt=dos -Isrc\stl 1.12 +CFLAGS = $(dbg) -5 -fp5 -otexan -zq -bt=dos -Isrc\stl 1.13 CXXFLAGS = $(CFLAGS) 1.14 LD = wlink 1.15 1.16 $(bin): $(obj) 1.17 %write objects.lnk file { $(obj) } 1.18 - $(LD) name $@ @objects $(LDFLAGS) 1.19 + $(LD) debug all name $@ @objects $(LDFLAGS) 1.20 1.21 .c: src\ 1.22 .cc: src\