home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2003 September / VPR0309.ISO / DOTNETSDK / dotNETSDK / setup.exe / netfxsd1.cab / makefile_248________.3643236F_FC70_11D3_A536_0090278A1BB8 < prev    next >
Encoding:
Makefile  |  2001-09-18  |  701 b   |  27 lines

  1. !IFNDEF NETSAMPLEPATH
  2. !ERROR Env Variable NETSAMPLEPATH must be defined: Parent directory of QuickStart Samples
  3. !ENDIF
  4.  
  5. !include $(NETSAMPLEPATH)\QuickStart\master.mak
  6.  
  7. #--------------------------------------------------
  8. TARGETS = StringTest2Lib.dll StringClient.exe
  9. CLEANUP = *.exe *.dll *.pdb
  10. #--------------------------------------------------
  11. _IMPORTS=/r:StringTest2Lib.dll
  12.  
  13. #--------------------------------------------------
  14. all : $(TARGETS)
  15.   rem Sample $(MAKEDIR)
  16.   
  17. clean :
  18.   for %i in ( $(CLEANUP) ) do del %i
  19. #--------------------------------------------------
  20.  
  21. StringClient.exe : StringClient.cs
  22.  
  23. StringTest2Lib.dll :
  24.     $(_TLBIMP) ../StringTest2.dll /out:$*.dll
  25.  
  26.  
  27.