view libgaim/win32/rules.mak @ 14453:0af643d766bd

[gaim-migrate @ 17167] Breaking from case statements to prevent fall-through which causes an extra va_arg to be extracted is kind of important. I think I'll do that here. (Thanks to Josh Blanton) committer: Tailor Script <tailor@pidgin.im>
author Ethan Blanton <elb@pidgin.im>
date Tue, 05 Sep 2006 13:55:50 +0000
parents e88aae4f4c40
children fd45915c6988
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) $(EXTUTILS)/xsubpp -typemap $(EXTUTILS)/typemap -typemap $(GAIM_LIB_PERL_TOP)/common/typemap $< > $@

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