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

📄 makefile.win

📁 C++连接一写常用数据库的接口
💻 WIN
字号:
## Windows# Make file to build the Postgresql Examples dbConnect API# Copyright (c) Johnathan Ingram 2004, jingram@roguware.org######################################################################include ..\..\windows.confIFLAGS = -I../../includeLFLAGS = ..\..\lib\libdbconnect.lib
all: pgsql_types pgsql_functionpgsql_types: pgsql_types.cpp	$(CXX) /c pgsql_types.cpp $(CPPFLAGS) $(IFLAGS) /Fopgsql_types.obj	$(CXX) pgsql_types.obj $(CPPFLAGS) $(LFLAGS) /Fepgsql_types.exepgsql_function: pgsql_function.cpp	$(CXX) /c pgsql_function.cpp $(CPPFLAGS) $(IFLAGS) /Fopgsql_function.obj	$(CXX) pgsql_function.obj $(CPPFLAGS) $(LFLAGS) /Fepgsql_function.execlean:	@if exist *.obj del *.obj	@if exist *.lib del *.lib	@if exist *.exp del *.exp	@if exist pgsql_types.exe del pgsql_types.exe	@if exist pgsql_function.exe del pgsql_function.exe

⌨️ 快捷键说明

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