postgis/liblwgeom/cunit/Makefile.in
Sandro Santilli dec5cc525b Add an lwgeom_node function in liblwgeom (see #1206)
Includes testcase

git-svn-id: http://svn.osgeo.org/postgis/trunk@8088 b70326c6-7e19-0410-871a-916f4a2858ee
2011-11-04 06:45:10 +00:00

88 lines
2 KiB
Makefile

# **********************************************************************
# * $Id: Makefile.in
# *
# * PostGIS - Spatial Types for PostgreSQL
# * http://postgis.refractions.net
# * Copyright 2008 Paul Ramsey, Mark Cave-Ayland
# *
# * This is free software; you can redistribute and/or modify it under
# * the terms of the GNU General Public Licence. See the COPYING file.
# *
# **********************************************************************
CC=@CC@
CFLAGS=@CFLAGS@ @WARNFLAGS@ @GEOS_CPPFLAGS@ @PROJ_CPPFLAGS@ -DPOSTGIS_GEOS_VERSION=@POSTGIS_GEOS_VERSION@
LDFLAGS = @GEOS_LDFLAGS@ -lgeos_c
top_builddir = @top_builddir@
SHELL = @SHELL@
LIBTOOL = @LIBTOOL@
CUNIT_LDFLAGS=@CUNIT_LDFLAGS@
CUNIT_CPPFLAGS=@CUNIT_CPPFLAGS@ -I..
# ADD YOUR NEW TEST FILE HERE (1/1)
OBJS= \
cu_algorithm.o \
cu_print.o \
cu_misc.o \
cu_ptarray.o \
cu_geodetic.o \
cu_geos.o \
cu_measures.o \
cu_node.o \
cu_libgeom.o \
cu_split.o \
cu_surface.o \
cu_homogenize.o \
cu_out_wkt.o \
cu_out_wkb.o \
cu_out_gml.o \
cu_out_kml.o \
cu_out_geojson.o \
cu_out_svg.o \
cu_out_x3d.o \
cu_in_wkb.o \
cu_in_wkt.o \
cu_tester.o
# If we couldn't find the cunit library then display a helpful message
ifeq ($(CUNIT_LDFLAGS),)
all: requirements_not_met_cunit
check: requirements_not_met_cunit
else
# Build the unit tester
all: cu_tester
# Build and run the unit tester
check: cu_tester
@./cu_tester
endif
# Build the main unit test executable
cu_tester: ../liblwgeom.la $(OBJS)
$(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o $@ $(OBJS) ../liblwgeom.la $(CUNIT_LDFLAGS)
#$(CC) -o $@ $(OBJS) ../.libs/liblwgeom.a -lm $(CUNIT_LDFLAGS) $(LDFLAGS)
# Command to build each of the .o files
$(OBJS): %.o: %.c
$(CC) $(CFLAGS) $(CUNIT_CPPFLAGS) -c -o $@ $<
# Clean target
clean:
rm -f $(OBJS)
rm -f cu_tester
distclean: clean
rm -f Makefile
# Requirements message
requirements_not_met_cunit:
@echo
@echo "WARNING:"
@echo
@echo "configure was unable to find CUnit which is required for unit testing."
@echo "In order to enable unit testing, you must install CUnit and then re-run configure."
@echo