view libgaim/win32/rules.mak @ 14774:abc5706bfade

[gaim-migrate @ 17537] This doesn't need to be around anymore. committer: Tailor Script <tailor@pidgin.im>
author Daniel Atallah <daniel.atallah@gmail.com>
date Wed, 18 Oct 2006 22:27:30 +0000
parents fd45915c6988
children
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$(GAIM_LIB_TOP) -i $< -o $@