blob: b63cae1c19771d116806a9be788da109cf8c92f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Definition of macros for library, and C startup code.
osedir = $(osrdir)$(DIRSEPSTR)$(OSENVIRONMENT)
# Change the CCROOT variable to reflect the installation directory of your
# C++ compiler.
.IMPORT .IGNORE : CCVER
CCVER *:= c:/cc/borland/$(OSENVIRONMENT)
# Definitions for compiles and links
CSTARTUP = $(CCVER)/lib/c0x32.obj
LDLIBS = $(CCVER)/lib/cw32 $(CCVER)/lib/import32
CFLAGS += -A- -w-pro -I$(osedir)
|