--- q_a/samples/walk/makefile 2018/08/09 18:29:19 1.1 +++ q_a/samples/walk/makefile 2018/08/09 18:29:41 1.1.1.2 @@ -2,8 +2,6 @@ !include -# This line allows NMAKE to work as well - all: walk.exe # Update the resource if necessary @@ -12,9 +10,10 @@ all: walk.exe # Update the object file if necessary walk.obj: walk.c - $(cc) $(cflags) $(cvars) walk.c + $(cc) $(cdebug) $(cflags) $(cvars) walk.c # Update the executable file if necessary, and if so, add the resource back in. walk.exe: walk.obj - $(link) $(conflags) -out:walk.exe walk.obj $(conlibs) + $(cvtobj) $(cvtdebug) *.obj + $(link) $(linkdebug) $(conflags) -out:walk.exe walk.obj $(conlibs)