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

  1. .SUFFIXES: .cs 
  2.  
  3. #define the names of the compilers we ship
  4. _CS=csc.exe
  5.  
  6. #set some common c# flags, default is debug
  7. _CS_DLL_FLAGS=/t:library /debug+
  8. _CS_EXE_FLAGS=/debug+
  9.  
  10. #note: name.cs and name.exe must match
  11. .cs.exe:
  12.     $(_CS) $(_CS_EXE_FLAGS) $(_IMPORTS) /out:$@ $** $(_WIN32RES) $(_KEYFILE)    
  13.  
  14. default:    
  15.     nmake all
  16. clean : 
  17.     @-del /Q *.obj *.tlb *.reg
  18.  
  19. clobber :    clean
  20.         @-del /Q *.exe *.dll
  21.  
  22.  
  23. all: Clisp.exe
  24.  
  25. Clisp.exe: clisp.cs CodeGen.cs Exp.cs Lexer.cs LispRuntime.cs Parser.cs Token.cs TypeCheck.cs
  26.