_IMPORTS=/R:System.DLL \
         /R:System.Windows.Forms.DLL \
         /R:System.Drawing.DLL 
         
all:rawsockets.exe

rawsockets.exe: 
        @-del *.exe
	csc  /unsafe /debug:full /t:winexe \
        /out:rawsockets.exe $(_INPORTS) *.cs


