FossilOrigin-Name: de46b0e10c5d9f516acbbf2ea01d84d0d5ac126412949d459265279262a1b87e
30 lines
518 B
Makefile
30 lines
518 B
Makefile
SRCS = PGConnection.m \
|
|
PGResult.m \
|
|
PGResultRow.m \
|
|
exceptions/PGCommandFailedException.m \
|
|
exceptions/PGConnectionFailedException.m \
|
|
exceptions/PGException.m
|
|
|
|
all:
|
|
@objfw-compile \
|
|
--lib 0.0 \
|
|
-o objpgsql \
|
|
--builddir build \
|
|
-Iexceptions \
|
|
-I. \
|
|
-lpq \
|
|
${SRCS}
|
|
|
|
test:
|
|
@objfw-compile \
|
|
-o test \
|
|
--builddir build \
|
|
-Iexceptions \
|
|
-I. \
|
|
-L. \
|
|
-lobjpgsql \
|
|
test.m
|
|
|
|
clean:
|
|
rm -f libobjpgsql.* exceptions/*~ *~
|
|
rm -fr build
|