mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-24 02:59:07 +08:00
a4d75230fc
git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk@166 d0cd1f9f-072b-0410-8dd7-cf729c803f20
21 lines
937 B
Makefile
21 lines
937 B
Makefile
# TODO(luc) Add 'doc' to this list when ready
|
|
SUBDIRS = ccstruct ccutil classify cutil dict pageseg image textord viewer wordrec ccmain training tessdata testing dlltest java
|
|
|
|
EXTRA_DIST = eurotext.tif phototest.tif ReleaseNotes tesseract.spec config \
|
|
tesseract.dsp tesseract.dsw tesseract.vcproj tesseract.sln \
|
|
StdAfx.cpp StdAfx.h tessdll.cpp tessdll.h tessdll.dsp tessdll.vcproj
|
|
|
|
#EXTRA_DIST = doc/html doc/@PACKAGE_NAME@_@PACKAGE_VERSION@.pdf doc/@PACKAGE_NAME@_@PACKAGE_VERSION@.ps.gz
|
|
|
|
dist-hook:
|
|
# Need to remove CVS directories from directories
|
|
# added using EXTRA_DIST. $(distdir)/tessdata would in
|
|
# theory suffice.
|
|
rm -rf `find $(distdir) -name CVS`
|
|
rm -rf `find $(distdir) -name .svn`
|
|
rm -rf `find $(distdir) -name .deps`
|
|
# Also remove extra files not needed in a distribution
|
|
rm -rf `find $(distdir) -name configure.ac`
|
|
rm -rf `find $(distdir) -name acinclude.m4`
|
|
rm -rf `find $(distdir) -name aclocal.m4`
|