2008-05-12 11:18:48 +04:00
|
|
|
# vim:set noet ts=4:
|
|
|
|
#
|
|
|
|
# ibus - The Input Bus
|
|
|
|
#
|
|
|
|
# Copyright (c) 2007-2008 Huang Peng <shawn.p.huang@gmail.com>
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This library 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 Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this program; if not, write to the
|
|
|
|
# Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
|
|
|
# Boston, MA 02111-1307 USA
|
2008-06-29 12:20:23 +04:00
|
|
|
|
2008-06-17 12:26:29 +04:00
|
|
|
SUBDIRS = \
|
2008-06-25 06:41:59 +04:00
|
|
|
daemon \
|
2008-07-05 05:18:11 +04:00
|
|
|
gconf \
|
2008-06-17 12:26:29 +04:00
|
|
|
ibus \
|
2008-07-08 13:24:31 +04:00
|
|
|
launcher \
|
2008-06-17 12:26:29 +04:00
|
|
|
panel \
|
2008-08-16 08:51:47 +04:00
|
|
|
lib \
|
2008-08-16 11:46:21 +04:00
|
|
|
util \
|
2008-08-16 08:51:47 +04:00
|
|
|
client \
|
2008-07-10 11:34:03 +04:00
|
|
|
setup \
|
2008-06-17 19:41:24 +04:00
|
|
|
icons \
|
2008-06-17 12:26:29 +04:00
|
|
|
m4 \
|
|
|
|
po \
|
2008-05-12 11:18:48 +04:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
|
2008-06-19 14:38:44 +04:00
|
|
|
EXTRA_DIST = \
|
|
|
|
autogen.sh \
|
2008-06-24 21:12:28 +04:00
|
|
|
ibus.spec.in \
|
2008-06-19 17:11:19 +04:00
|
|
|
python-config.py \
|
2008-05-12 11:18:48 +04:00
|
|
|
$(NULL)
|
|
|
|
|
2008-06-19 14:38:44 +04:00
|
|
|
noinst_DIST = \
|
2008-05-12 11:18:48 +04:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
|
2008-06-24 13:06:59 +04:00
|
|
|
DISTCLEANFILES = \
|
2008-06-25 11:53:28 +04:00
|
|
|
po/stamp-it \
|
|
|
|
$(NULL)
|
2008-05-12 11:18:48 +04:00
|
|
|
|
2008-08-23 05:08:50 +04:00
|
|
|
install-data-hook:
|
|
|
|
$(MKDIR_P) $(DESTDIR)${pkgdatadir}/engine
|
|
|
|
|
2008-07-08 13:24:31 +04:00
|
|
|
rpm: dist @PACKAGE_NAME@.spec
|
|
|
|
rpmbuild -bb \
|
2008-06-24 21:12:28 +04:00
|
|
|
--define "_sourcedir `pwd`" \
|
2008-07-08 13:24:31 +04:00
|
|
|
--define "_builddir `pwd`" \
|
2008-06-24 21:12:28 +04:00
|
|
|
--define "_srcrpmdir `pwd`" \
|
2008-07-08 13:24:31 +04:00
|
|
|
--define "_rpmdir `pwd`" \
|
|
|
|
--define "_specdir `pwd`" \
|
|
|
|
@PACKAGE_NAME@.spec
|
|
|
|
|
|
|
|
srpm: dist @PACKAGE_NAME@.spec
|
|
|
|
rpmbuild -bs \
|
|
|
|
--define "_sourcedir `pwd`" \
|
|
|
|
--define "_builddir `pwd`" \
|
|
|
|
--define "_srcrpmdir `pwd`" \
|
|
|
|
--define "_rpmdir `pwd`" \
|
|
|
|
--define "_specdir `pwd`" \
|
|
|
|
@PACKAGE_NAME@.spec
|
|
|
|
|
2008-06-25 11:53:28 +04:00
|
|
|
clean-rpm:
|
|
|
|
$(RM) -r "`uname -i`"
|
2008-06-24 21:12:28 +04:00
|
|
|
|
2008-06-25 11:53:28 +04:00
|
|
|
clean-local: clean-rpm
|