home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2003 September / VPR0309.ISO / DOTNETSDK / dotNETSDK / setup.exe / netfxsd1.cab / makefile_212________.3643236F_FC70_11D3_A536_0090278A1BB8 < prev    next >
Encoding:
Makefile  |  2001-09-18  |  820 b   |  23 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. #--------------------------------------------------
  9. TARGETS = AL
  10. CLEANUP = *.dll *.pdb
  11. #--------------------------------------------------
  12.  
  13. #--------------------------------------------------
  14. all : $(TARGETS)
  15.     rem Sample $(MAKEDIR)
  16.  
  17. AL :
  18.     AL /link:publisher.cfg /out:policy.2.0.myasm.dll /keyfile:MyAsm.snk /version:2.0.0.0 /title:" " /descr:"A QuickStart Tutorial Assembly" /config:" " /comp:"Microsoft Corporation" /prod:"Microsoftョ QuickStart Tutorials" /copy:"ゥ Microsoft Corporation.  All rights reserved." /trade:" " /c:" "
  19.     
  20. clean :
  21.     for %i in ( $(CLEANUP) ) do del %i
  22. #--------------------------------------------------
  23.