1# MSDOS Borland-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
8CPP	   *:=			# C-preprocessor
9CFLAGS     *=			# C   compiler flags
10"C++"      *:=			# C++ Compiler
11"C++FLAGS" *=			# C++ Compiler flags
12
13AS         *:= tasm		# Assembler and flags
14ASFLAGS    *=
15LD         *= tlink		# Loader and flags
16LDFLAGS    *=
17LDLIBS     *=			# Default libraries
18AR         *:= tlib		# archiver
19ARFLAGS    *= ????
20
21# Definition of Print command for this system.
22PRINT      *= print
23
24# Language and Parser generation Tools and their flags
25YACC	   *:= yacc		# standard yacc
26YFLAGS     *=
27LEX	   *:= lex		# standard lex
28LFLAGS     *=
29
30# Other Compilers, Tools and their flags
31PC	   *:= tpc		# pascal compiler
32RC	   *:= ???		# ratfor compiler
33FC	   *:= ???		# fortran compiler
34