# # Windows # Make file to build the MySQL Examples dbConnect API # Copyright (c) Johnathan Ingram 2004, jingram@roguware.org # ##################################################################### include ..\..\windows.conf IFLAGS = -I../../include LFLAGS = ..\..\lib\libdbconnect.lib all: 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.exe clean: @if exist *.obj del *.obj @if exist *.lib del *.lib @if exist *.exp del *.exp @if exist mysql_types.exe del mysql_types.exe