view libpurple/win32/rules.mak @ 29523:962bc012a504

This cast is incorrect. It should be (time_t *). But it's actually not needed. This has been in our code since: 22ea67df.. by warmenhoven 2001-07-31 Crazy, huh? Fixes #11484.
author Mark Doliner <mark@kingant.net>
date Thu, 04 Mar 2010 07:37:08 +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 $@