FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
module-pgsql/Makefile.am at develop · qoretechnologies/module-pgsql · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
qoretechnologies
/
module-pgsql
Public
Notifications
You must be signed in to change notification settings
Fork
1
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
module-pgsql
/
Makefile.am
Copy path
More file actions
More file actions
Latest commit
History
History
History
69 lines (51 loc) · 1.66 KB
Breadcrumbs
module-pgsql
/
Makefile.am
Copy path
File metadata and controls
69 lines (51 loc) · 1.66 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
AUTOMAKE_OPTIONS
= foreign
SUBDIRS
= src
noinst_HEADERS
= src/pgsql.h
\
src/QorePGConnection.h
\
src/QorePGMapper.h
EXTRA_DIST
= COPYING.LGPL COPYING.MIT AUTHORS README
\
RELEASE-NOTES
\
src/ql_pgsql.qpp
\
test/pgsql.qtest
\
test/pgsql-cancel-callback.qtest
\
test/pgsql-mutation-observer.qtest
\
test/pgsql-native-bulk-load.qtest
\
test/sql-stmt.q
\
qore-pgsql-module.spec
ACLOCAL_AMFLAGS
=-I m4
if COND_DOXYGEN
DOX
= pgsql
DOXYGEN_OUTPUT
= docs/pgsql/html
DOXYFILES
= docs/doxyfile docs/mainpage.dox
DOXYFILES_SRC
= docs/doxyfile.tmpl docs/footer_template.html
QDX
= qdx
DX_CLEANFILES
= ${DOXYFILES}
docs/pgsql/html
:
$(
DOXYFILES
)
cd
docs
;
$(
DOXYGEN_CMD
)
doxyfile
;
$(
QDX
)
--post
$(
DOXYGEN_OUTPUT
)
/
*
html
$(
QDX
)
--post
$(
DOXYGEN_OUTPUT
)
/search/
*
html
docs/mainpage.dox
: docs/mainpage.dox.tmpl
$(
QDX
)
-d
$<
$@
docs/doxyfile
: docs/doxyfile.tmpl
sed -e s/__VERSION__/
${VERSION}
/ -e s:__USERMODDIR__:
${usermoddir}
:
$<
>
$@
doxygen-doc
:
$(
DOXYGEN_OUTPUT
)
EXTRA_DIST
+=
$(
DOXYGEN_OUTPUT
)
html-local
:
$(
DOXYGEN_OUTPUT
)
install-html-local
:
for
dox
in
$(
DOX
)
;
do
$(
MKDIR_P
)
$(
DESTDIR
)
$(
datadir
)
/
$(
PACKAGE
)
/docs/
$$
dox/html/search
;
done
for
dir
in
$(
DOXYGEN_OUTPUT
)
;
do
\
for
f
in
$$
dir/
*
;
do
if
[
-f
$$
f ]
;
then
$(
INSTALL_DATA
)
$$
f
$(
DESTDIR
)
$(
datadir
)
/
$(
PACKAGE
)
/
$$
dir
;
fi
;
done
;
\
for
f
in
$$
dir/search/
*
;
do
$(
INSTALL_DATA
)
$$
f
$(
DESTDIR
)
$(
datadir
)
/
$(
PACKAGE
)
/
$$
dir/search
;
done
;
\
done
clean-local
:
$(
RM
)
-rf
$(
DOXYGEN_OUTPUT
)
uninstall-local
:
$(
RM
)
-rf
$(
DESTDIR
)$(
datadir
)
/
$(
PACKAGE
)
/docs
mostlyclean-local
:
rm -rf
${DOXYGEN_OUTPUT}
${DX_CLEANFILES}
else
doxygen-doc
:
echo
no doxygen support
endif
libtool
:
$(
LIBTOOL_DEPS
)
$(
SHELL
)
./config.status --recheck
Back
|
FazBrowse Home
|
New Git URL