theexe.exe: theexe.obj thedll.lib
    $(MAKEDIR)\tlink32 /v /L$(MAKEDIR)\..\lib /x  @&&|
      c0w32 $&
      $&                                    #target
                                            #map file (none)
      thedll cw32mt import32                #import libs
                                            #def file
                                            #res file
|

thedll.dll: thedll.obj thelib.lib
  $(MAKEDIR)\tlink32 /L$(MAKEDIR)\..\lib /Tpd /v /x    \
    c0d32 $&,$&,,thelib cw32mt import32,,


thelib.lib: thelib.obj
  $(MAKEDIR)\tlib $& -+$&

.dll.lib:
  $(MAKEDIR)\implib $& $.
.cpp.obj:
  $(MAKEDIR)\bcc32 -DSTRICT -c -v -ps -VF -I$(MAKEDIR)\..\include $&
                                                          
clean:
   del *.dll *.lib *.exe *.obj *.map    



     
  
