* move mug/ to toys/mug

This commit is contained in:
Dirk-Jan C. Binnema 2010-11-15 08:43:00 +02:00
parent 9df9c2b36f
commit 45c95b06f3
16 changed files with 33 additions and 13 deletions

View File

@ -16,13 +16,7 @@
include $(top_srcdir)/gtest.mk include $(top_srcdir)/gtest.mk
SUBDIRS=man src contrib SUBDIRS=man src contrib toys
# build if there is some gtk available
if HAVE_GTK
SUBDIRS += mug
endif
# so we can say 'make test' # so we can say 'make test'
check: test cleanupnote check: test cleanupnote

View File

@ -153,8 +153,9 @@ AC_CONFIG_FILES([
Makefile Makefile
src/Makefile src/Makefile
src/tests/Makefile src/tests/Makefile
mug/Makefile toys/Makefile
mug/mug.desktop toys/mug/Makefile
toys/mug/mug.desktop
man/Makefile man/Makefile
contrib/Makefile contrib/Makefile
]) ])
@ -165,9 +166,9 @@ echo "mu configuration is complete."
echo "-----------------------------" echo "-----------------------------"
echo echo
echo "Note: the Xapian database is no longer stored as <muhome>/xapian-0.6" echo "Note: since version 0.7, the Xapian database is no longer stored as "
echo "but instead simply as <muhome>/xapian. You can remove the older" echo "<muhome>/xapian-0.6 but instead simply as <muhome>/xapian. You can "
echo "<muhome>/xapian-0.6 directory to save some disk space" echo "remove the olde <muhome>/xapian-0.6 directory to save some disk space"
echo echo
echo "type 'make' to build mu, or 'make check' to run the unit tests." echo "type 'make' to build mu, or 'make check' to run the unit tests."

25
toys/Makefile.am Normal file
View File

@ -0,0 +1,25 @@
## Copyright (C) 2008-2010 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
##
## 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 3 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.
include $(top_srcdir)/gtest.mk
SUBDIRS=
# build if there is some gtk available
if HAVE_GTK
SUBDIRS += mug
endif

View File

@ -56,7 +56,7 @@ icondir= \
$(datarootdir)/icons $(datarootdir)/icons
icon_DATA= \ icon_DATA= \
${top_srcdir}/mug/mug.svg ${top_srcdir}/toys/mug/mug.svg
desktopdir= \ desktopdir= \
$(datarootdir)/applications $(datarootdir)/applications

View File

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB