1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
LIB = objpgsql
LIB_MAJOR = 0
LIB_MINOR = 0
SRCS = PGConnection.m \
PGResult.m \
PGResultRow.m \
exceptions/PGCommandFailedException.m \
exceptions/PGConnectionFailedException.m \
exceptions/PGException.m
HEADERS = ${SRCS:.m=.h}
CPPFLAGS += -Wall -Iexceptions -I.
LIBS += -lpq
prefix ?= /usr/local
INSTALL ?= install
|
>
|
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
LIB = objpgsql
LIB_MAJOR = 0
LIB_MINOR = 0
SRCS = PGConnection.m \
PGResult.m \
PGResultRow.m \
exceptions/PGCommandFailedException.m \
exceptions/PGConnectionFailedException.m \
exceptions/PGException.m
HEADERS = ${SRCS:.m=.h} \
ObjPgSQL.h
CPPFLAGS += -Wall -Iexceptions -I.
LIBS += -lpq
prefix ?= /usr/local
INSTALL ?= install
|