# Doc storage proglet PG_CONFIG?= pg_config CXX?= g++ all: store store: store.cxx $(CXX) -I $(shell $(PG_CONFIG) --includedir) -L $(shell $(PG_CONFIG) --libdir) -lpq store.cxx -o store clean: rm store