home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 40 / IOPROG_40.ISO / SOFT / NETFrameworkSDK.exe / comsdk.cab / samples1.exe / CLisp / makefile < prev    next >
Encoding:
Makefile  |  2000-06-23  |  540 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 cool 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.