makefile.win
来自「C++连接一写常用数据库的接口」· WIN 代码 · 共 32 行
WIN
32 行
## 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 + =
减小字号Ctrl + -
显示快捷键?