#  This Makefile is part of Numdiff
#  Copyright (C)  2005,2006    Ivano Primi  <ivprimi@libero.it>    
#
#   Copying and distribution of this file, with or without modification,
#   are permitted in any medium without royalty provided the copyright
#   notice and this notice are preserved.

MKDIR=../shtool install -d
MV=../shtool move
MSGFMT=msgfmt
MO_FILES=./it.mo

all: $(MO_FILES)

%.mo: %.po
	$(MSGFMT) -c -C $< -o $@
	$(MKDIR) $(LOCALEDIR)/$*/LC_MESSAGES
	$(MV) $@ $(LOCALEDIR)/$*/LC_MESSAGES/$(PACKAGE).mo

