Faciliate the use of ctags and add gajim.desktop dep

This commit is contained in:
Travis Shirk 2005-09-20 01:58:58 +00:00
parent 075c5bfc48
commit 7bcdb9c6ef
1 changed files with 18 additions and 10 deletions

View File

@ -113,7 +113,7 @@ install:
chmod +x "$(DESTDIR)$(PREFIX)/bin/$$BASE"; \ chmod +x "$(DESTDIR)$(PREFIX)/bin/$$BASE"; \
done done
gajim.desktop: gajim.desktop: gajim.desktop.in
intltool-merge -d po gajim.desktop.in gajim.desktop intltool-merge -d po gajim.desktop.in gajim.desktop
# #
@ -131,6 +131,7 @@ help:
@echo make idle - makes only idle detection module @echo make idle - makes only idle detection module
@echo make translation - makes only translation \(mo files\) @echo make translation - makes only translation \(mo files\)
@echo make gtkspell - makes only gtkspell detection module @echo make gtkspell - makes only gtkspell detection module
@echo make tags - makes 'tags' file for use with ctags
@echo @echo
# #
@ -148,3 +149,10 @@ uninstall:
rm -f "$(DESTDIR)$(PREFIX)/share/applications/gajim.desktop" #the desktop rm -f "$(DESTDIR)$(PREFIX)/share/applications/gajim.desktop" #the desktop
find "$(DESTDIR)$(PREFIX)/share/locale" -name 'gajim.mo' -exec rm {} \; #the .mo files find "$(DESTDIR)$(PREFIX)/share/locale" -name 'gajim.mo' -exec rm {} \; #the .mo files
@echo done uninstalling @echo done uninstalling
tags:
-rm tags
exuberant-ctags -R
.PHONY: all translation trayicon gtkspell idle clean dist install help\
uninstall tags