mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 19:37:16 +02:00
various ndb make changes, see respective file
BitKeeper/deleted/.del-Makefile.am~d4e228ebd21fc066: Delete: ndb/include/Makefile.am acinclude.m4: static linking of ndbclient into mysqld configure.in: removed ndb/include/Makefile.am + fixed conditional compile of ndb shm, sci ndb/Makefile.am: dist-hook for make distdir in ndb ndb/config/type_ndbapitest.mk.am: use of libndbclient.so in testprograms ndb/config/type_ndbapitools.mk.am: static linking to binary distributed ndb tools ndb/src/Makefile.am: enable libndbclient.so ndb/src/common/transporter/Makefile.am: added support for optional inclusion of shared mem and sci in ndb transporter ndb/tools/Makefile.am: new type for tools which should be statically linked with libndbclient BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
This commit is contained in:
parent
36652d0053
commit
0bfc8c57ca
10 changed files with 41 additions and 31 deletions
|
|
@ -1,7 +1,4 @@
|
|||
## find * -name '*.hpp' -print | grep -v SCCS | grep -v odbc | sed 's/\.hpp/\.hpp \\/' > tmp.out
|
||||
## find * -name '*.h' -print | grep -v SCCS | grep -v odbc | sed 's/\.h/\.h \\/' >> tmp.out
|
||||
|
||||
SUBDIRS = . include src test tools
|
||||
SUBDIRS = src test tools .
|
||||
|
||||
ndbinclude_HEADERS = \
|
||||
include/ndb_types.h \
|
||||
|
|
@ -31,4 +28,17 @@ mgmapiinclude_HEADERS = \
|
|||
include/mgmapi/mgmapi.h \
|
||||
include/mgmapi/mgmapi_debug.h
|
||||
|
||||
noinst_HEADERS =
|
||||
EXTRA_DIST = include
|
||||
|
||||
dist-hook:
|
||||
-rm -rf `find $(distdir) -type d -name SCCS`
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
if test "$$subdir" != "."; then \
|
||||
files="`find $$subdir -name '*\.h'` `find $$subdir -name '*\.hpp'`"; \
|
||||
for f in $$files; do \
|
||||
if test -d "$(distdir)/`dirname $$f`" -a ! -e "$(distdir)/$$f"; then \
|
||||
cp $$f $(distdir)/$$f; \
|
||||
fi; \
|
||||
done; \
|
||||
fi; \
|
||||
done
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue