mirror of https://gitee.com/openkylin/presage.git
66 lines
1.8 KiB
Makefile
66 lines
1.8 KiB
Makefile
|
|
##########
|
|
# Presage, an extensible predictive text entry system
|
|
# ------------------------------------------------------
|
|
#
|
|
# Copyright (C) 2008 Matteo Vescovi <matteo.vescovi@yahoo.co.uk>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
EXTRA_DIST = \
|
|
INSTALL_Cygwin_dev_env.txt \
|
|
INSTALL_MinGW_MSYS_dev_env.txt
|
|
|
|
dist_pkgdata_DATA = \
|
|
getting_started.txt \
|
|
python_binding.txt
|
|
|
|
if HAVE_UNIX2DOS
|
|
install-data-hook:
|
|
case `uname` in \
|
|
MINGW*) \
|
|
unix2dos $(DESTDIR)$(pkgdatadir)/getting_started.txt; \
|
|
unix2dos $(DESTDIR)$(pkgdatadir)/python_binding.txt; \
|
|
;; \
|
|
*) \
|
|
;; \
|
|
esac
|
|
endif
|
|
|
|
if BUILD_DOCUMENTATION
|
|
if HAVE_DOXYGEN
|
|
#pkgdata_DATA = html latex
|
|
install-data-local:
|
|
$(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/html
|
|
find html -type f \( -name "*.html" -o -name "*.png" \) \
|
|
-exec $(INSTALL_DATA) {} $(DESTDIR)$(pkgdatadir)/{} \;
|
|
|
|
all-local: doxygen.timestamp
|
|
|
|
doxygen.timestamp: Doxyfile
|
|
doxygen
|
|
touch $@
|
|
|
|
DISTCLEANFILES = doxygen.timestamp
|
|
|
|
distclean-local:
|
|
rm -rf html latex
|
|
|
|
uninstall-local:
|
|
rm -rf $(DESTDIR)$(pkgdatadir)/html $(DESTDIR)$(pkgdatadir)/latex
|
|
endif
|
|
endif |