--- q_a/samples/semaphor/makefile 2018/08/09 18:29:19 1.1.1.1 +++ q_a/samples/semaphor/makefile 2018/08/09 18:29:19 1.1.1.2 @@ -2,17 +2,16 @@ !include -# This line allows NMAKE to work as well - all: sema.exe # Update the object file if necessary sema.obj: sema.c sema.h - $(cc) $(cflags) $(cvars) sema.c + $(cc) $(cdebug) $(cflags) $(cvars) sema.c # Update the executable file if necessary, and if so, add the resource back in. sema.exe: sema.obj - $(link) $(guiflags) -out:sema.exe sema.obj $(guilibs) + $(cvtobj) $(cvtdebug) *.obj + $(link) $(linkdebug) $(guiflags) -out:sema.exe sema.obj $(guilibs)