The general form of the command to compile and link a DB-Library/C application is:
!ifdef COMPILE_DEBUG
CFLAGS = /W3 /MD /nologo /Z7 /DWIN32
LFLAGS= /MAP /SUBSYSTEM:CONSOLE /DEBUG /DEBUGTYPE:cv
!else
CFLAGS = /W3 /MD /nologo /Od
LFLAGS= /MAP /SUBSYSTEM:CONSOLE
!endif