postgis/examples/wkb_reader/Makefile

19 lines
264 B
Makefile
Raw Normal View History

#
# Edit the following variables to point to your PostgreSQL
# client libraries and include files
#
PG_INC=/usr/include/pgsql
PG_LIB=/usr/lib
#
# Below should be fine
#
CFLAGS=-I$(PG_INC) -L$(PG_LIB) -lpq
all: readwkb
readwkb: readwkb.c
clean:
@rm -f readwkb