1 # Simple makefile for Borland C++ 4.0
2 # 3.1 can NOT be used, it has problems with the fileno() define.
4 # Command line variables:
5 # BOR path to root of Borland C (E:\BORLANDC)
6 # DEBUG set to "yes" for debugging (no)
12 !if
("$(DEBUG)" == "yes")
13 DEBUG_FLAG
= -v
-DDEBUG
19 INC
= -I
$(BOR
)\
include
22 # The following compile options can be changed for better machines.
23 # replace -1- with -2 to produce code for a 80286 or higher
24 # replace -1- with -3 to produce code for a 80386 or higher
25 # add -v for source debugging
28 CFLAGS
= -A
-mc
-DMSDOS
$(DEBUG_FLAG
) $(OPTIMIZE
) $(INC
) $(LIB
)