makefile.win

来自「C++连接一写常用数据库的接口」· WIN 代码 · 共 29 行

WIN
29
字号
## Windows# Make file to build the MySQL Examples dbConnect API# Copyright (c) Johnathan Ingram 2004, jingram@roguware.org######################################################################include ..\..\windows.confIFLAGS = -I../../includeLFLAGS = ..\..\lib\libdbconnect.liball: mysql_types	@echo """mysql_types: mysql_types.cpp	$(CXX) /c mysql_types.cpp $(CPPFLAGS) $(IFLAGS) /Fomysql_types.obj	$(CXX) mysql_types.obj $(CPPFLAGS) $(LFLAGS) /Femysql_types.execlean:	@if exist *.obj del *.obj	@if exist *.lib del *.lib	@if exist *.exp del *.exp	@if exist mysql_types.exe del mysql_types.exe

⌨️ 快捷键说明

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