mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-11 03:15:33 +00:00
document in README.repo to use autogen.sh to regenerate change build.sh to use autoreconf -if add the generated files to .gitignore
23 lines
428 B
Makefile
23 lines
428 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
SUBDIRS = include src
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
libkmfldocdir = ${docdir}
|
|
libkmfldoc_DATA = \
|
|
README\
|
|
COPYING\
|
|
AUTHORS\
|
|
ChangeLog\
|
|
INSTALL\
|
|
NEWS
|
|
|
|
EXTRA_DIST = $(libkmfldoc_DATA)
|
|
|
|
# Copy all the spec files. Of cource, only one is actually used.
|
|
dist-hook:
|
|
for specfile in *.spec; do \
|
|
if test -f $$specfile; then \
|
|
cp -p $$specfile $(distdir); \
|
|
fi \
|
|
done
|
|
|