--- q_a/samples/cmndlg/makefile 2018/08/09 18:29:34 1.1.1.2 +++ q_a/samples/cmndlg/makefile 2018/08/09 18:30:00 1.1.1.3 @@ -7,8 +7,8 @@ all: cmndlg.exe # Update the resource if necessary cmndlg.res: cmndlg.rc cmndlg.h - rc -r -fo cmndlg.tmp cmndlg.rc - cvtres -$(CPU) cmndlg.tmp -o cmndlg.res + $(rc) -r -fo cmndlg.tmp cmndlg.rc + $(cvtres) -$(CPU) cmndlg.tmp -o cmndlg.res del cmndlg.tmp # Update the object file if necessary @@ -19,5 +19,4 @@ cmndlg.obj: cmndlg.c cmndlg.h # Update the executable file if necessary, and if so, add the resource back in. cmndlg.exe: cmndlg.obj cmndlg.res - $(cvtobj) $(cvtdebug) *.obj $(link) $(linkdebug) $(guiflags) -out:cmndlg.exe cmndlg.obj cmndlg.res $(guilibs)