diff options
author | jfarrell <jfarrell@apache.org> | 2013-08-15 21:20:19 -0400 |
---|---|---|
committer | jfarrell <jfarrell@apache.org> | 2013-08-15 21:20:19 -0400 |
commit | 102c600bbb64b23679a3b143cdf9815733bdcb55 (patch) | |
tree | c449defe3ed1d59db51a8a600808a72ec9db85ec /Makefile.am | |
parent | 32d323e2c7df3ae2c083d8fe109a3dd6806c204d (diff) | |
download | thrift-102c600bbb64b23679a3b143cdf9815733bdcb55.tar.gz |
Thrift-2124: .o, .so, .la, .deps, .libs, gen-* files left tutorials, test and lib/cpp when making DIST
Client: build
Patch: jfarrell
Fixing all the missing files and dist build issues that have been ignored.
Diffstat (limited to 'Makefile.am')
-rwxr-xr-x | Makefile.am | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/Makefile.am b/Makefile.am index 18749c361..af25ad37e 100755 --- a/Makefile.am +++ b/Makefile.am @@ -25,22 +25,23 @@ if WITH_TESTS SUBDIRS += test endif +SUBDIRS += tutorial + dist-hook: - find $(distdir) -type f \( -iname ".deps" -or -iname ".libs" -or -iname ".gitignore" \ - -or -iname ".DS_Store" -or -iname "._*" \) | xargs rm -rf + find $(distdir) -type f \( -iname ".DS_Store" -or -iname "._*" -or -iname ".gitignore" \) | xargs rm -rf + find $(distdir) -type d \( -iname ".deps" -or -iname ".libs" \) | xargs rm -rf find $(distdir) -type d \( -iname ".svn" -or -iname ".git" \) | xargs rm -rf print-version: @echo $(VERSION) EXTRA_DIST = \ - .travis.yml \ - contrib \ - debian \ - doc \ - doap.rdf \ - sonar-project.properties \ - tutorial \ - LICENSE \ - CHANGES \ - NOTICE + .travis.yml \ + contrib \ + debian \ + doc \ + doap.rdf \ + sonar-project.properties \ + LICENSE \ + CHANGES \ + NOTICE |