view libpurple/win32/rules.mak @ 30116:1963a39c0ad1

I got confused when I first read this because I looked at the functions above this one in the header file and it didn't seem like the boolean would apply to them. Maybe this is more clear?
author Mark Doliner <mark@kingant.net>
date Mon, 12 Apr 2010 00:24:04 +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 $@