view libpurple/win32/rules.mak @ 23255:5bbd0328626b

- Changed back "Email" to "E-Mail" in German translation - this repairs some the problems of rev ff389b62b9d93369d7d6f96ca3e913c108d21523
author Björn Voigt <bjoern@cs.tu-berlin.de>
date Fri, 30 May 2008 22:21:57 +0000
parents ded8da3de5f8
children 1d6b962dea92
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 $(PURPLE_PERL_TOP)/common/typemap $< > $@

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