📄 mingw.mak
字号:
# Makefile for MinGW (tested with 1.1)
#
# http://606u.dir.bg/
# 606u@dir.bg
# ---------------------------
# C O N F I G U R E H E R E
#
MINGW_BASE = c:\mingw
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$(MINGW_BASE)\include \
-I$(ORALIB_BASE)
LIBRARIES = \
-L$(STLPORT_BASE)\lib\mingw \
-L$(MINGW_BASE)\lib \
-L$(ORALIB_BASE)
# compilers and flags
CXX = gcc
CXXFLAGS = $(HEADERS) $(LIBRARIES) -D_MINGW
# default target
all : test_suite.exe
# clean target
clean :
@if exist "*.o" del *.o
test_suite.exe : test_suite.o
$(CXX) $(CXXFLAGS) $< -loralib -loci -lstlport_mingw32 -lstdc++ -o $@
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -