diff options
Diffstat (limited to 'ndb/Makefile.am')
-rw-r--r-- | ndb/Makefile.am | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ndb/Makefile.am b/ndb/Makefile.am new file mode 100644 index 00000000000..82f424fcfb4 --- /dev/null +++ b/ndb/Makefile.am @@ -0,0 +1,19 @@ +SUBDIRS = src tools . include @ndb_opt_subdirs@ +DIST_SUBDIRS = src tools include test docs +EXTRA_DIST = config + +include $(top_srcdir)/ndb/config/common.mk.am + +dist-hook: + -rm -rf `find $(distdir) -type d -name SCCS` + -rm -rf `find $(distdir) -type d -name old_files` + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" != "." -a "$$subdir" != "include"; 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 |