📄 makefile.win
字号:
## Windows# Make file to build the dbconnect wrapper for the dbConnect API# Copyright (c) Johnathan Ingram 2003######################################################################include ..\..\windows.confSOURCES = dbconnect.cppOBJS = $(SOURCES:.cpp=.obj)IFLAGS = /I..\baseCPPFLAGS = $(CPPFLAGS) /DDBCONNECTVER=\"$(dbconn_version)\"all: dynamic copy *.lib ..\..\lib\ /V /Y copy *.dll ..\..\lib\ /V /Y copy dbconnect.h ..\..\include\dbconn\ /V /Y copy ..\base\*.h ..\..\include\dbconn\ /V /Ydynamic: $(OBJS) $(CXX) /LD $(OBJS) ..\base\*.obj /Felibdbconnect.dll $(CPPFLAGS)clean: @if exist *.obj del *.obj @if exist *.lib del *.lib @if exist *.dll del *.dll @if exist *.exp del *.exp.cpp.obj: $(CXX) /c $< $(CPPFLAGS) $(IFLAGS) /Fo$@
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -