# $Id: Makefile,v 1.1 2004/04/15 18:31:50 indiri69 Exp $
.SUFFIXES:
.SUFFIXES: .po .mo

SUBDIR = $(wildcard */LC_MESSAGES/*.po)

%.mo: %.po
	msgfmt $? -o $@

all: $(foreach dir,$(SUBDIR),$(basename $(dir)).mo)
