AUTOMAKE_OPTIONS = foreign # TODO - mloskot - Create VC++ project file. # The one in the PostGIS/Driver is only a placeholder copied from MySQL/Driver EXTRA_DIST = PostGisDriver.vcproj noinst_LTLIBRARIES = libpostgisdr.la # TODO: mloskot - REMOVE dummy_gdbi.* files # TODO - mloskot - add missing files # libpostgisdr_la_SOURCES = \ bind.c \ break.c \ commit.c \ connect.c \ conn_status.c \ define.c \ disconnect.c \ est_cursor.c \ fre_cursor.c \ get_msg.c \ init.c \ null.c \ pgconn_status.c \ pgresult_clear.c \ pgresult_status.c \ rdbi_init.c \ run_sql.c \ sql.c \ stdafx.c \ term.c \ type.c \ vndr_info.c \ vndr_name.c \ Geometry.c # TODO - mloskot - not yet implemented # desc_bind.c # desc_slct.c # execute.c # fetch.c # get_gen_id.c # set_schema.c # xlt_status.c noinst_HEADERS = $(libpostgisdr_la_SOURCES) \ bind.h \ break.h \ commit.h \ connect.h \ conn_status.h \ define.h \ disconnect.h \ est_cursor.h \ fre_cursor.h \ Geometry.h \ get_msg.h \ init.h \ local.h \ null.h \ pgconn_status.h \ pgresult_clear.h \ pgresult_status.h \ rdbi_init.h \ run_sql.h \ sql.h \ stdafx.h \ term.h \ type.h \ vndr_info.h \ vndr_name.h # TODO - mloskot - not yet implemented # desc_bind.h # desc_slct.h # errno.h # execute.h # fetch.h # get_gen_id.h # set_schema.h # xlt_status.h INCLUDES = \ -I../../.. \ -I/usr/include/postgresql \ -I$(FDOMYSQL)/include \ -I$(FDO)/Unmanaged/Inc libpostgisdr_la_LDFLAGS = # TODO - mloskot - add recommended C++ flags: # -pedantic -Wall ... CXXFLAGS = @CXXFLAGS@ -DFULLPROTO -D__USE_GNU -DLINUX ##To be consistent with internal build, force the compiler to be g++. CC = g++