Compile-and-link line examples

The general form of the command to compile and link a DB-Library/C application is:

!ifdef COMPILE_DEBUG
 CFLAGS = /W3 /MD /nologo /Z7
 LFLAGS= /MAP /SUBSYSTEM:CONSOLE /DEBUG /DEBUGTYPE:cv
 !else
 CFLAGS = /W3 /MD /nologo /Od
 LFLAGS= /MAP /SUBSYSTEM:CONSOLE
 !endif