2003-10-25 14:49:18 +00:00
|
|
|
#
|
2020-01-04 10:41:26 +01:00
|
|
|
# Copyright (C) 2003-2020 Sébastien Helleu <flashcode@flashtux.org>
|
2010-06-22 19:46:28 +02:00
|
|
|
# Copyright (C) 2005 Julien Louis <ptitlouis@sysif.net>
|
|
|
|
# Copyright (C) 2006-2009 Emmanuel Bouthenot <kolter@openics.org>
|
|
|
|
#
|
|
|
|
# This file is part of WeeChat, the extensible chat client.
|
|
|
|
#
|
|
|
|
# WeeChat is free software; you can redistribute it and/or modify
|
2003-10-25 14:49:18 +00:00
|
|
|
# it under the terms of the GNU General Public License as published by
|
2007-07-02 12:25:13 +00:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
2003-10-25 14:49:18 +00:00
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
2010-06-22 19:46:28 +02:00
|
|
|
# WeeChat is distributed in the hope that it will be useful,
|
2003-10-25 14:49:18 +00:00
|
|
|
# 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
|
2018-11-29 23:16:07 +01:00
|
|
|
# along with WeeChat. If not, see <https://www.gnu.org/licenses/>.
|
2003-10-25 14:49:18 +00:00
|
|
|
#
|
|
|
|
|
2012-12-16 23:07:33 +01:00
|
|
|
# This target will update file config-git.h with output of command "git describe"
|
|
|
|
# (if needed, and only for a devel/rc version).
|
|
|
|
BUILT_SOURCES = build-config-git.h
|
|
|
|
build-config-git.h:
|
2015-10-17 14:30:10 +02:00
|
|
|
-$(abs_top_srcdir)/tools/git-version.sh "$(abs_top_srcdir)" "$(VERSION)" config-git.h
|
2012-12-16 23:07:33 +01:00
|
|
|
|
2014-07-21 21:25:43 +02:00
|
|
|
if TESTS
|
|
|
|
tests_dir = tests
|
|
|
|
endif
|
|
|
|
|
2019-11-18 20:05:43 +01:00
|
|
|
SUBDIRS = icons po doc intl src $(tests_dir)
|
2003-10-26 22:49:49 +00:00
|
|
|
|
2016-05-15 08:52:19 +02:00
|
|
|
EXTRA_DIST = AUTHORS.adoc \
|
|
|
|
ChangeLog.adoc \
|
|
|
|
Contributing.adoc \
|
|
|
|
README.adoc \
|
|
|
|
ReleaseNotes.adoc \
|
2014-03-05 10:37:04 +01:00
|
|
|
CMakeLists.txt \
|
2009-03-28 22:53:34 +01:00
|
|
|
config.rpath \
|
|
|
|
config.h.cmake \
|
2012-11-27 10:58:45 +01:00
|
|
|
cmake/CMakeParseArguments.cmake \
|
2016-05-15 09:07:05 +02:00
|
|
|
cmake/FindAsciidoctor.cmake \
|
2009-03-28 22:53:34 +01:00
|
|
|
cmake/FindAspell.cmake \
|
2014-07-21 21:20:20 +02:00
|
|
|
cmake/FindCppUTest.cmake \
|
2013-06-07 21:01:48 +02:00
|
|
|
cmake/FindENCHANT.cmake \
|
2012-11-06 15:01:56 +01:00
|
|
|
cmake/FindGCRYPT.cmake \
|
2009-03-28 22:53:34 +01:00
|
|
|
cmake/FindGettext.cmake \
|
|
|
|
cmake/FindGnuTLS.cmake \
|
2012-11-27 10:58:45 +01:00
|
|
|
cmake/FindGuile.cmake \
|
2009-03-28 22:53:34 +01:00
|
|
|
cmake/FindIconv.cmake \
|
|
|
|
cmake/FindLua.cmake \
|
|
|
|
cmake/FindNcurses.cmake \
|
|
|
|
cmake/FindPerl.cmake \
|
|
|
|
cmake/FindPkgConfig.cmake \
|
|
|
|
cmake/FindPython.cmake \
|
|
|
|
cmake/FindRuby.cmake \
|
2015-03-08 12:05:06 +01:00
|
|
|
cmake/FindV8.cmake \
|
2012-11-27 10:58:45 +01:00
|
|
|
cmake/FindZLIB.cmake \
|
|
|
|
cmake/cmake_uninstall.cmake.in \
|
2009-08-09 09:20:40 +02:00
|
|
|
po/CMakeLists.txt \
|
2009-08-09 10:01:54 +02:00
|
|
|
po/srcfiles.cmake \
|
2015-10-22 20:54:12 +02:00
|
|
|
tools/build-test.sh \
|
2015-10-17 14:30:10 +02:00
|
|
|
tools/git-version.sh \
|
2017-01-14 15:14:37 +01:00
|
|
|
tools/makedist.sh \
|
2015-10-24 12:44:13 +02:00
|
|
|
version.sh \
|
2019-10-07 20:54:27 +02:00
|
|
|
weechat.desktop \
|
2013-10-12 19:05:27 +02:00
|
|
|
weechat.pc.in \
|
|
|
|
weechat.cygport.in
|
2003-10-26 22:49:49 +00:00
|
|
|
|
2005-04-17 19:01:18 +00:00
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
2009-05-08 23:45:54 +02:00
|
|
|
|
2019-10-07 20:54:27 +02:00
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
2009-05-08 23:45:54 +02:00
|
|
|
pkgconfig_DATA = weechat.pc
|
2013-01-19 10:50:12 +01:00
|
|
|
|
2019-10-07 20:54:27 +02:00
|
|
|
desktopdir = $(datadir)/applications
|
|
|
|
desktop_DATA = weechat.desktop
|
|
|
|
|
2013-01-19 10:50:12 +01:00
|
|
|
clean-local:
|
|
|
|
$(RM) config-git.h
|