mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
1eb0961d7d
improved distdir
87 lines
1.6 KiB
Bash
87 lines
1.6 KiB
Bash
#
|
|
# Invoked from make distdir.
|
|
# Prints list of dirs and files to include under mysql/ndb.
|
|
#
|
|
|
|
# top dir
|
|
|
|
grep -v '^#' <<__END__
|
|
#ReleaseNotes.html
|
|
.defs.mk
|
|
Defs.mk
|
|
configure
|
|
Makefile
|
|
Epilogue.mk
|
|
SrcDist.sh
|
|
BinDist.sh
|
|
mysqlclusterenv.sh
|
|
__END__
|
|
|
|
# subset of bins, libs
|
|
|
|
grep -v '^#' <<__END__
|
|
bin/
|
|
bin/mysqlcluster
|
|
bin/mysqlcluster_install_db
|
|
bin/mysqlclusterd
|
|
lib/
|
|
__END__
|
|
|
|
# docs
|
|
|
|
#find docs/*.html docs/*.pdf -print
|
|
|
|
# include
|
|
|
|
find include -print | grep -v /SCCS
|
|
|
|
# config
|
|
|
|
find config -print | grep -v /SCCS
|
|
|
|
# tools
|
|
|
|
find tools -print | grep -v /SCCS | grep -v '\.o' | grep -v '\.depend' | grep -v tools/ndbsql
|
|
|
|
# home
|
|
|
|
find home -print | grep -v /SCCS
|
|
|
|
# test
|
|
|
|
find test -print | grep -v /SCCS | grep -v '\.o' | grep -v '\.depend' | grep -v test/odbc
|
|
|
|
# src
|
|
|
|
find src -print | grep -v /SCCS | grep -v '\.o' | grep -v '\.depend' | grep -v src/client/odbc | grep -v cpcc-win32
|
|
|
|
# demos
|
|
|
|
find demos -print | grep -v /SCCS | grep -v '\.o' | grep -v '\.depend'
|
|
|
|
# examples
|
|
|
|
grep -v '^#' <<__END__
|
|
examples/
|
|
examples/Makefile
|
|
examples/ndbapi_example1/
|
|
examples/ndbapi_example1/Makefile
|
|
examples/ndbapi_example1/ndbapi_example1.cpp
|
|
examples/ndbapi_example2/
|
|
examples/ndbapi_example2/Makefile
|
|
examples/ndbapi_example2/ndbapi_example2.cpp
|
|
examples/ndbapi_example3/
|
|
examples/ndbapi_example3/Makefile
|
|
examples/ndbapi_example3/ndbapi_example3.cpp
|
|
examples/ndbapi_example4/
|
|
examples/ndbapi_example4/Makefile
|
|
examples/ndbapi_example4/ndbapi_example4.cpp
|
|
examples/ndbapi_example5/
|
|
examples/ndbapi_example5/Makefile
|
|
examples/ndbapi_example5/ndbapi_example5.cpp
|
|
examples/select_all/
|
|
examples/select_all/Makefile
|
|
examples/select_all/select_all.cpp
|
|
__END__
|
|
|
|
exit 0
|