medit/Makefile.am

85 lines
1.9 KiB
Makefile
Raw Normal View History

AUTOMAKE_OPTIONS = dist-bzip2 no-dist-gzip foreign nostdinc
m4files = \
m4/moo-comps.m4 \
m4/moo-debug.m4 \
m4/moo-dirs.m4 \
m4/moo-fam.m4 \
m4/moo-flags.m4 \
m4/moo-funcs.m4 \
m4/moo-gtk.m4 \
m4/moo-i18n.m4 \
m4/moo-os.m4 \
m4/moo-pcre.m4 \
m4/moo-progs.m4 \
m4/moo-pygtk.m4 \
m4/moo-python.m4 \
m4/moo-reloc.m4 \
m4/moo-version.m4 \
m4/moo-xdgmime.m4 \
m4/moo-xml.m4
EXTRA_DIST = \
$(m4files) \
autogen.sh \
mingw-configure \
cygwin-configure \
2006-06-12 12:54:13 -05:00
makewin \
2006-08-31 10:10:57 -05:00
COPYING.lib \
2006-08-03 00:39:06 -05:00
THANKS \
intltool-extract.in \
intltool-merge.in \
intltool-update.in \
mkpotsubdirs \
2006-08-03 00:39:06 -05:00
medit.desktop.in
2005-06-22 18:20:32 +00:00
all-am: pot-subdirs-stamp wininstaller/medit.iss m4-stamp
m4-stamp: $(m4files)
echo stamp > m4-stamp
for f in $(m4files); do \
if test $(srcdir)/$$f -nt $(srcdir)/configure; then \
touch $(srcdir)/configure.ac; \
fi \
done
pot-subdirs-stamp: po/POTFILES.in
$(SHELL) $(srcdir)/mkpotsubdirs "$(srcdir)"
CLEANFILES = pot-subdirs-stamp
DIST_SUBDIRS = moo tests po
# need to create pot-subdirs-stamp before it goes to po/
SUBDIRS = . moo tests po
2006-12-03 01:45:27 -06:00
ACLOCAL_AMFLAGS = -I m4
2006-08-03 00:39:06 -05:00
@INTLTOOL_DESKTOP_RULE@
DESKTOP_IN_FILES = medit.desktop.in
DESKTOP_FILES =$(DESKTOP_IN_FILES:.desktop.in=.desktop)
2006-04-28 16:07:52 -05:00
desktopdir = $(datadir)/applications
2006-08-03 00:39:06 -05:00
desktop_DATA = $(DESKTOP_FILES)
2006-08-13 06:05:50 -05:00
DISTCLEANFILES = \
m4-stamp \
configargs.h \
2006-08-13 06:05:50 -05:00
$(DESKTOP_FILES) \
intltool-extract \
intltool-merge \
intltool-update
2006-04-28 16:07:52 -05:00
appicondir = $(datadir)/pixmaps
appicon_DATA = moo/mooutils/pixmaps/medit.png
2006-06-11 03:03:41 -05:00
hicolor = $(datadir)/icons/hicolor
iconthemedir = $(hicolor)/48x48/apps
2006-05-04 18:17:50 -05:00
icontheme_DATA = moo/mooutils/pixmaps/medit.png
2005-11-05 13:49:44 +00:00
2006-06-23 02:31:37 -05:00
# update_icon_cache = gtk-update-icon-cache -f -t $(hicolor)
#
# install-data-hook:
# if echo "Updating icon cache" && $(update_icon_cache); then \
# echo "Done."; \
# else \
# echo "*** GTK icon cache not updated. After install, run this:";\
# echo $(update_icon_cache); \
# fi