view libpurple/win32/rules.mak @ 32752:e83beb0d9648

Doh. Upon further investigation I think these translations were made against 2.x.y. * Russian translation updated (ߧ ѧާӧѧݧ). Fixes #14814 * Slovenian translation updated (Martin Srebotnjak). Fixes #14941 * Spanish translation updated (Javier Fernndez-Sanguino Pea). Fixes #14937
author Mark Doliner <mark@kingant.net>
date Mon, 12 Mar 2012 09:36:42 +0000
parents 62f0988c666c
children
line wrap: on
line source

# Rules on how to make object files from various sources

%.o: %.c
	$(CC) $(CFLAGS) $(DEFINES) $(INCLUDE_PATHS) -o $@ -c $<

%.c: %.xs
	$(PERL) -MExtUtils::ParseXS -e 'ExtUtils::ParseXS::process_file(filename => "$<", output => "$@", typemap => "$(PURPLE_PERL_TOP)/common/typemap");'

%.o: %.rc
	$(WINDRES) -I$(PURPLE_TOP) -i $< -o $@

%.desktop: %.desktop.in $(wildcard $(PIDGIN_TREE_TOP)/po/*.po)
	LC_ALL=C $(PERL) $(INTLTOOL_MERGE) -d -u -c $(PIDGIN_TREE_TOP)/po/.intltool-merge-cache $(PIDGIN_TREE_TOP)/po $< $@