Install all headers into one place.
FossilOrigin-Name: 86adc6aab9e6ef2189e3f6f015aa53341dd840aa1589c8218531b312754dd72f
This commit is contained in:
parent
f2886c2111
commit
f9be9ea547
3 changed files with 8 additions and 7 deletions
4
Makefile
4
Makefile
|
@ -48,10 +48,10 @@ clean:
|
||||||
rm -fr build
|
rm -fr build
|
||||||
|
|
||||||
install:
|
install:
|
||||||
mkdir -p ${destdir}${prefix}/include/ObjPgSQL/exceptions
|
mkdir -p ${destdir}${prefix}/include/ObjPgSQL
|
||||||
for i in ${HEADERS}; do \
|
for i in ${HEADERS}; do \
|
||||||
${INSTALL} -m 644 $$i \
|
${INSTALL} -m 644 $$i \
|
||||||
${destdir}${prefix}/include/ObjPgSQL/$$i; \
|
${destdir}${prefix}/include/ObjPgSQL/$$(basename $$i); \
|
||||||
done
|
done
|
||||||
mkdir -p ${destdir}${prefix}/lib
|
mkdir -p ${destdir}${prefix}/lib
|
||||||
export LIB_MAJOR=${LIB_MAJOR}; \
|
export LIB_MAJOR=${LIB_MAJOR}; \
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#import "PGConnection.h"
|
|
||||||
#import "PGResult.h"
|
#import "PGResult.h"
|
||||||
#import "PGResultRow.h"
|
#import "PGResultRow.h"
|
||||||
#import "exceptions/PGCommandFailedException.h"
|
#import "PGConnection.h"
|
||||||
#import "exceptions/PGConnectionFailedException.h"
|
|
||||||
#import "exceptions/PGException.h"
|
#import "PGException.h"
|
||||||
|
#import "PGCommandFailedException.h"
|
||||||
|
#import "PGConnectionFailedException.h"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#import <ObjFW/ObjFW.h>
|
#import <ObjFW/ObjFW.h>
|
||||||
|
|
||||||
#import "../PGConnection.h"
|
#import "PGConnection.h"
|
||||||
|
|
||||||
@interface PGException: OFException
|
@interface PGException: OFException
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue