#  Compiler options:
#
#	/Ti  : Generate debugger information
#	/Sm  : Allow migration extensions
#	/Ss  : Allow '//' for comments
#	/Q	 : Do not display logo
#	/Kb  : Produce basic diagnostic message
#	/W2  : Produce severe errors, errors and warnings
#	/Gm  : Link with the multithread version of library
#	/Gt  : Enavle all variables to be passed to 16-bit function.
#		   Static & external variables are mapped into 16-bit segment.
#		   Variables larger then 64k will be alligned on, but will still
#		   cross, 64k boundary.
#	/C	 : Compile only
#
#
#  Linker options:
#
#	/De  : Prepare for Debugging
#	/NOI : Preserve the case sensitivity

ALL : Qframe.exe

io386.obj:
  wasm io386.asm
qcam.obj: qcam.c
  icc  /DOS2 /Sm /Ss /Q  /Ti-  /O+ /Op+  /Tx- /W2 /C qcam.c

getopt.obj: getopt.c
  icc  /DOS2 /Sm /Ss /Q  /Ti-  /O+ /Op+  /Tx- /W2 /C getopt.c

gifsave.obj: gifsave.c
  icc  /DOS2 /Sm /Ss /Q  /Ti-  /O+ /Op+  /Tx- /W2 /C gifsave.c


Qframe.exe: io386.obj qcam.obj getopt.obj gifsave.obj makefile
  link386 /exepack gifsave getopt io386 qcam,Qframe.exe,NUL,os2386.lib ,sock.def;


