blob: 637b5bbdcda10a078de914beb129f851fbb3018e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# 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
|