# -------- Tutorial and Example Programs --------

### Production
OPTIONS=-O -w -P

### Debugging
#OPTIONS=-v -w -P

### Zinc information
INCLUDE=..\include
LIB=..\lib
!if !$d(MODEL)
MODEL=l
!endif

.SWAP
.PATH.obj=$(MODEL)
.PATH.lib=$(LIB)
.cpp.exe :
	tcc $(OPTIONS) -m$(MODEL) -I$(INCLUDE) -L$(LIB) {$< } zil$(MODEL).lib graphics.lib

