view libpurple/win32/rules.mak @ 30488:dbe96260108c

It seems like aMSN can get a bit stuck when using multiple file transfers, and the user could accept a file transfer a second time (it seems to fix itself eventually.) We don't want to try and start an xfer again or bad things might happen.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Tue, 18 May 2010 06:36:35 +0000
parents 1d6b962dea92
children 62f0988c666c
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 $@