gimp/po-plug-ins/makefile.msc
Tor Lillqvist 933b866166 Define ROUND(), RINT(), SQR(), G_PI and G_PI_4. The latter two will
* app/appenv.h: Define ROUND(), RINT(), SQR(), G_PI and
	G_PI_4. The latter two will presumably eventually be in
	GLib. RINT() calls rint() if we have it, otherwise adds 0.5 and
	calls floor().

	* app/*.c: Remove the multiple identical definitions of M_PI. Use
	G_PI instead of M_PI. Remove ROUND() and rint() definitions. Use
	RINT() instead of rint().
1999-08-04 23:22:29 +00:00

28 lines
763 B
Plaintext

## Makefile for installing the GIMP message catalogs with Microsoft nmake
## Use: nmake -f makefile.msc install
## You will need the msgfmt program from GNU gettext!
# Locale directory.
LOCALEDIR = c:\gimp\locale
# Only some languages actually have any translations
# LANGUAGES= de fi fr hu it ja ko nl pl ru sv
LANGUAGES= fr ja no sv
################################################################
# Nothing much configurable below
all :
for %l in ($(LANGUAGES)) do nmake -f makefile.msc %l.gmo
install : all
for %l in ($(LANGUAGES)) do md $(LOCALEDIR)\%l
for %l in ($(LANGUAGES)) do md $(LOCALEDIR)\%l\LC_MESSAGES
for %l in ($(LANGUAGES)) do copy %l.gmo $(LOCALEDIR)\%l\LC_MESSAGES\gimp-std-plugins.mo
.SUFFIXES: .po .gmo
.po.gmo:
msgfmt -o $@ $<