⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bcc55.mak

📁 Oracle调用接口
💻 MAK
字号:
#	Makefile for BCC 5.5 (Borland's free command-line tools)
#
#	http://606u.dir.bg/
#	606u@dir.bg


# ---------------------------
# C O N F I G U R E   H E R E
#
BCC_BASE = c:\borland\bcc55
STLPORT_BASE = e:\stlport-4.5.3
ORACLE_BASE = e:\oracle\ora81
ORALIB_BASE = ..\oralib
#
#  E N D   C O N F I G U R E
# ---------------------------


# do not change lines below


# switches for include files directories and library files directories
HEADERS = \
	-I$(STLPORT_BASE)\stlport \
	-I$(ORACLE_BASE)\oci\include \
	-I$(BCC_BASE)\include \
	-I$(ORALIB_BASE)

LIBRARIES = \
	-L$(STLPORT_BASE)\lib\bcc \
	-L$(ORACLE_BASE)\oci\lib\bc \
	-L$(BCC_BASE)\lib \
	-L$(ORALIB_BASE)


# compilers and flags
CXX = bcc32
CXXFLAGS = $(HEADERS) $(LIBRARIES)


# default target
all : test_suite.exe


# clean target
clean :
	@if exist "*.obj" del *.obj
	@if exist "*.tds" del *.tds
	@if exist "*.map" del *.map


test_suite.exe : test_suite.cpp


.cpp.exe :
	$(CXX) $(CXXFLAGS) -P $< "oralib-bcc.lib" oci.lib

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -