📄 makefile.win
字号:
## Windows# Make file to build the base components for the DBConnect API# Copyright (c) Johnathan Ingram 2003######################################################################include ..\..\windows.confSOURCES = baseException.cpp simpleThreads.cpp dlLoader.cpp configFile.cpp \ jDate.cpp hexDigest.cpp dbconnectExceptions.cpp baseConnection.cpp baseQuery.cpp baseValue.cpp \ baseFieldDescription.cppOBJS = $(SOURCES:.cpp=.obj)all: $(OBJS) $(LIBPROG) /OUT:libbase.lib $(OBJS)clean: @if exist *.obj del *.obj @if exist *.lib del *.lib.cpp.obj: $(CXX) /c $< $(CPPFLAGS) /Fo$@
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -