view libpurple/win32/rules.mak @ 31475:9f28bc3ed160

Revert my revision b3be51b1008b426760ae04ce7487b089440bdeeb It causes a bug where status messages weren't cleared in the tooltip when a buddy unsets their status message. Thanks to Seanathan and dustin on ticket #12988 for noticing this and tracking down the cause.
author Mark Doliner <mark@kingant.net>
date Wed, 15 Dec 2010 09:38:34 +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 $< $@