# **********************************************************************
# *
# * PostGIS - Spatial Types for PostgreSQL
# * http://postgis.net
# * Copyright 2008 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=@CXX@
CFLAGS=-fno-strict-aliasing -Wno-write-strings -Wno-unused-function -I../liblwgeom @CPPFLAGS@ @PGSQL_BE_CPPFLAGS@ @PROJ_CPPFLAGS@ @PICFLAGS@ @GETTEXT_CFLAGS@
LDFLAGS=@GETTEXT_LDFLAGS@ @LIBINTL@
YACC=@YACC@
LEX=@LEX@
# Standalone COMMON objects
SA_OBJS = \
gserialized_gist.o \
lwgeom_transform.o \
lwgeom_cache.o \
lwgeom_pg.o \
shared_gserialized.o
SA_HEADERS = \
lwgeom_pg.h \
lwgeom_transform.h \
lwgeom_cache.h \
gserialized_gist.h \
pgsql_compat.h
all: libpgcommon.a
# nothing to install or uninstall
install uninstall:
libpgcommon.a: $(SA_OBJS) $(SA_HEADERS)
ar rs libpgcommon.a $(SA_OBJS)
maintainer-clean: clean
clean:
$(MAKE) -C cunit clean
rm -f $(SA_OBJS)
rm -f $(NM_OBJS)
rm -f libpgcommon.a
distclean: clean
$(MAKE) -C cunit distclean
rm -f Makefile
check: check-unit
check-regress:
check-unit: libpgcommon.a
$(MAKE) -C cunit check
# Command to build each of the .o files
$(SA_OBJS): %.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<
$(SA_OBJS): ../postgis_config.h