2000-08-24 Tor Lillqvist <tml@iki.fi> * README.win32: Update, tell people the MSVC makefiles are not up-to-date. * */makefile.msc: Add warning about being outdated. * */makefile.cygwin: Remove. * */makefile.mingw.in: New files replacing the makefile.cygwin files. * */Makefile.am: Change correspondingly. * configure.in: Generate corresponding makefile.mingw files. * app/about_dialog.c: Include <gdk/gdkconfig.h> for GDK_USE_UTF8_MBS. Add UTF-8 version of a string. * libgimp/gimp.c: Remove horrible Win32 hack, not needed any longer. * plug-ins/common/jpeg.c: Use g_message, not g_warning. * plug-ins/common/winclipboard.c * plug-ins/common/winprint.c: Remove COMPAT_CRUFT. * plug-ins/Lighting/lighing_apply.c: Fix for non-interactive mode bug, supplied by Piet van Oostrum. * tips/makefile.mingw: New file. * tips/Makefile.am: Add it.
43 lines
808 B
Text
43 lines
808 B
Text
DEST = /install/gimp
|
|
|
|
UTF8TXT = $(addsuffix .utf8,$(basename $(wildcard *.*.txt)))
|
|
|
|
all : $(UTF8TXT)
|
|
|
|
install : all
|
|
for f in gimp_tips.txt $(UTF8TXT); do cp $$f $(DEST)/tips/`basename $$f .utf8`.txt; done
|
|
|
|
.SUFFIXES: .utf8
|
|
|
|
%.cs.utf8: %.cs.txt
|
|
iconv -f ISO-8859-2 -t UTF-8 $< >$@
|
|
|
|
%.de.utf8: %.de.txt
|
|
iconv -f ISO-8859-1 -t UTF-8 $< >$@
|
|
|
|
%.es.utf8: %.es.txt
|
|
iconv -f ISO-8859-1 -t UTF-8 $< >$@
|
|
|
|
%.fr.utf8: %.fr.txt
|
|
iconv -f ISO-8859-1 -t UTF-8 $< >$@
|
|
|
|
%.it.utf8: %.it.txt
|
|
iconv -f ISO-8859-1 -t UTF-8 $< >$@
|
|
|
|
%.ja.utf8: %.ja.txt
|
|
iconv -f EUC-JP -t UTF-8 $< >$@
|
|
|
|
%.ko.utf8: %.ko.txt
|
|
iconv -f EUC-KR -t UTF-8 $< >$@
|
|
|
|
%.pl.utf8: %.pl.txt
|
|
iconv -f ISO-8859-2 -t UTF-8 $< >$@
|
|
|
|
%.ru.utf8: %.ru.txt
|
|
iconv -f KOI8-R -t UTF-8 $< >$@
|
|
|
|
%.uk.utf8: %.uk.txt
|
|
iconv -f KOI8-U -t UTF-8 $< >$@
|
|
|
|
clean:
|
|
-rm *.utf8
|