blob: 668eb81f8033c8bba4ac4ed5aa66c3513f7dfdbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Required in addition to AC_CONFIG_MACRO_DIR() to
# silence libtoolize:
ACLOCAL_AMFLAGS = -I m4
if REPLACE_MALLOC
MAYBE_DLMALLOC = contrib/dlmalloc
endif
SUBDIRS = lib $(MAYBE_DLMALLOC) contrib/rb3ptr src doc tests
dist_pkgdata_DATA = sample.teco_ini
EXTRA_DIST = README TODO
# Only the lower resolution PNG icons are installed as they are
# required by the GTK UI.
# Other uses are left to the distro package manager.
dist_pkgdata_DATA += ico/sciteco-16.png ico/sciteco-32.png \
ico/sciteco-48.png
EXTRA_DIST += ico/sciteco-256.png ico/sciteco.ico
EXTRA_DIST += win32/loaders.cache
# Distribute entire Scintilla/Scinterm/Lexilla directory and
# do some manual cleanup.
dist-hook:
cp -r $(srcdir)/contrib/{scintilla,scinterm,lexilla} $(distdir)/contrib
rm -rf `find $(distdir)/contrib -name *.$(OBJEXT)` \
`find $(distdir)/contrib -name ".git*"` \
$(distdir)/contrib/{scintilla,lexilla}/bin/*
|