Mercurial > pidgin.yaz
view pidgin/win32/IdleTracker/Makefile.mingw @ 15549:bcdf8880564b
Make NetworkManager support disabled by default, add an "--enable-nm" option
for configure, and change DBUS to D-Bus in a few places.
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Mon, 05 Feb 2007 05:48:07 +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)