diff options
author | tomas@mc05.(none) <> | 2004-04-29 19:48:46 +0200 |
---|---|---|
committer | tomas@mc05.(none) <> | 2004-04-29 19:48:46 +0200 |
commit | 79b518d69cdfb9192218681f116cab0a84284368 (patch) | |
tree | 8b9cdb9ec41e2920f4d4cce70672096177d0c054 /ndb | |
parent | 07af63b8d78698434a2605ddc111bb42d005247b (diff) | |
download | mariadb-git-79b518d69cdfb9192218681f116cab0a84284368.tar.gz |
SrcDist.sh:
new file
Diffstat (limited to 'ndb')
-rw-r--r-- | ndb/SrcDist.sh | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/ndb/SrcDist.sh b/ndb/SrcDist.sh new file mode 100644 index 00000000000..dbc098c0611 --- /dev/null +++ b/ndb/SrcDist.sh @@ -0,0 +1,87 @@ +# +# Invoked from scripts/make_binary_distribution as "sh BinDist.sh". +# 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 | sort -t/ + +# include + +find include -print | grep -v /SCCS | sort -t/ + +# config + +find config -print | grep -v /SCCS | sort -t/ + +# tools + +find tools -print | grep -v /SCCS | grep -v '\.o' | grep -v tools/ndbsql | sort -t/ + +# home + +find home -print | grep -v /SCCS | sort -t/ + +# test + +find test -print | grep -v /SCCS | grep -v '\.o' | grep -v test/odbc | sort -t/ + +# src + +find src -print | grep -v /SCCS | grep -v '\.o' | grep -v src/client/odbc | grep -v cpcc-win32 | sort -t/ + +# demos + +find demos -print | grep -v /SCCS | grep -v '\.o' | sort -t/ + +# 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 |