-
Notifications
You must be signed in to change notification settings - Fork 36
/
makevars.bcc
38 lines (31 loc) · 966 Bytes
/
makevars.bcc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# -*- Mode: makefile -*-
# Copyright (c) 1999 Matthew Wall, all rights reserved
# makefile variables for compiling on windows
# -----------------------------------------------------------------------------
LIB_NAME= ga
### Set these directories to whatever is appropriate for your system. These
### used only if you do a 'make install'. They specify where the library and
### header files should be installed.
DESTDIR=c:\temp
HDR_DEST_DIR=$(DESTDIR)\include
LIB_DEST_DIR=$(DESTDIR)\lib
MKDEPEND = echo
MKDIR = mkdir
CP = xcopy
RM = del /f
CXX = bcc32.exe
LD = ilink32.exe
AR = tlib.exe
INSTALL = copy
CXX_INC_DIR = c:\Borland\BCC55\Include
CXX_LIB_DIR = c:\Borland\BCC55\Lib
CFLAGS =
CXXFLAGS = -q -P -RT -I$(CXX_INC_DIR) -w-var -w-inl
LDFLAGS = -q -c -x -Gn -L$(CXX_LIB_DIR)
ARFLAGS =
.SUFFIXES:
.SUFFIXES: .C
.C.o:
$(CXX) $(CXXFLAGS) -o$*.o -c $<
.C.obj:
$(CXX) $(CXXFLAGS) -o$*.obj -c $<