home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / Share / Editores / Perl5 / perl / bin / startup / msdos / microsft / macros.mk
Encoding:
Makefile  |  1997-08-10  |  926 b   |  35 lines

  1. # MSDOS Microsoft-C environment customization.
  2.  
  3. .IF $(OSENVIRONMENT)
  4.    .INCLUDE .IGNORE .NOINFER : $(INCFILENAME:d)$(OSENVIRONMENT)$/macros.mk
  5. .ENDIF
  6.  
  7. # Standard C-language command names and flags
  8. CC         *:= cl        # C   compiler 
  9. CPP       *:=            # C-preprocessor
  10. CFLAGS     *=            # C   compiler flags
  11. "C++"      *:=            # C++ Compiler
  12. "C++FLAGS" *=            # C++ Compiler flags
  13.  
  14. AS         *:= masm        # Assembler and flags
  15. ASFLAGS    *= 
  16. LD         *= link        # Loader and flags
  17. LDFLAGS    *=
  18. LDLIBS     *=            # Default libraries
  19. AR         *:= lib        # archiver
  20. ARFLAGS    *= ????
  21.  
  22. # Definition of Print command for this system.
  23. PRINT      *= print
  24.  
  25. # Language and Parser generation Tools and their flags
  26. YACC       *:= yacc        # standard yacc
  27. YFLAGS     *=
  28. LEX       *:= lex        # standard lex
  29. LFLAGS     *=
  30.  
  31. # Other Compilers, Tools and their flags
  32. PC       *:= ???        # pascal compiler
  33. RC       *:= ???        # ratfor compiler
  34. FC       *:= ???        # fortran compiler
  35.