diff options
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index b3aaf24..c019f96 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6,7 +6,13 @@ noinst_HEADERS = compat/bsd/sys/cdefs.h \ compat/bsd/sys/queue.h \ compat/bsd/sys/tree.h -EXTRA_DIST = $(wildcard @top_srcdir@/patches/*.patch) \ - README +EXTRA_DIST = README TODO -EXTRA_DIST += TODO +# Distribute entire scintilla directory and +# do some manual cleanup +EXTRA_DIST += scintilla +dist-hook: + rm -rf `find $(distdir)/scintilla -name *.o` \ + $(distdir)/scintilla/bin/scintilla.a + rm -rf `find $(distdir)/scintilla -name ".git*"` \ + `find $(distdir)/scintilla -name ".hg*"` |