Mercurial > pidgin.yaz
view pidgin/win32/IdleTracker/Makefile.mingw @ 15997:495800004c0a
4bit icons for windows < XP. These are certainly not as pretty as the originals, but look a lot better than scaled down versions.
author | Daniel Atallah <daniel.atallah@gmail.com> |
---|---|
date | Thu, 05 Apr 2007 04:25:11 +0000 |
parents | 0e17470b47c2 |
children | ded8da3de5f8 |
line wrap: on
line source
# # Makefile.mingw # # Description: Makefile for idletrack # GAIM_TOP := ../../.. include $(GAIM_TOP)/libpurple/win32/global.mak TARGET = idletrack ## ## SOURCES, OBJECTS ## C_SRC = idletrack.c OBJECTS = $(C_SRC:%.c=%.o) include $(GAIM_COMMON_RULES) ## ## TARGET DEFINITIONS ## .PHONY: all install clean all: $(TARGET).dll install: $(GAIM_INSTALL_DIR) cp $(TARGET).dll $(GAIM_INSTALL_DIR) ## ## BUILD DLL ## $(TARGET).dll $(TARGET).dll.a: $(OBJECTS) $(CC) -shared $(OBJECTS) $(LIB_PATHS) $(LIBS) $(DLL_LD_FLAGS) -Wl,--out-implib,$(TARGET).dll.a -o $(TARGET).dll ## ## CLEAN RULES ## clean: rm -f $(OBJECTS) $(TARGET).dll $(TARGET).dll.a include $(GAIM_COMMON_TARGETS)