grim/guifications2

[gf2-migrate @ 54]
org.guifications.gf2
2006-07-09, Sadrul Habib Chowdhury
e30929d1c594
[gf2-migrate @ 54]
Modified version of patch #1519552 from Eduard Carreras i Nadal (afro_style).
Do not show popups for accounts that are not connected yet.
# Makefile.mingw
#
# Description: Makefile to generate mo files
#
PACKAGE = guifications
##
## PATHS
##
srcdir = .
GAIM_TOP = ../../..
GAIM_INSTALL_DIR = $(GAIM_TOP)/win32-install-dir
LOCALEDIR = $(GAIM_INSTALL_DIR)/locale
GTK_BIN = $(GAIM_TOP)/../win32-dev/gtk_2_0/bin
##
## TOOLS
##
GMSGFMT := $(GTK_BIN)/msgfmt
.SUFFIXES:
.SUFFIXES: .po .gmo
##
## SOURCES, OBJECTS
##
CATALOGS = $(patsubst %.po,%.gmo,$(wildcard *.po))
##
## RULES
##
.po.gmo:
rm -f $@ && $(GMSGFMT) --statistics -o $@ $<
##
## TARGETS
##
all: $(CATALOGS)
install: all
mkdir -p $(LOCALEDIR)
@catalogs='$(CATALOGS)'; \
for cat in $$catalogs; do \
cat=`basename $$cat`; \
lang=`echo $$cat | sed 's/\.gmo$$//'`; \
dir=$(LOCALEDIR)/$$lang/LC_MESSAGES; \
mkdir -p $$dir; \
if test -r $$cat; then \
cp $$cat $$dir/$(PACKAGE).mo; \
echo "installing $$cat as $$dir/$(PACKAGE).mo"; \
else \
cp $(srcdir)/$$cat $$dir/$(PACKAGE).mo; \
echo "installing $(srcdir)/$$cat as" \
"$$dir/$(PACKAGE).mo"; \
fi; \
done
clean:
rm -f *.gmo