Mercurial > pidgin.yaz
view pidgin/win32/IdleTracker/Makefile.mingw @ 23072:4b4be7609072
Import a patch (with changes) from Debian:
* 20_purple-remote_friendly.patch:
- Make error messages friendlier when python-dbus is not installed
or if someone calls purple-remote/purple-url-handler with --help or -h
(Closes: #413204)
committer: Richard Laager <rlaager@wiktel.com>
author | Ari Pollak <ari@debian.org> |
---|---|
date | Wed, 21 May 2008 21:05:09 +0000 |
parents | ded8da3de5f8 |
children |
line wrap: on
line source
# # Makefile.mingw # # Description: Makefile for idletrack # PIDGIN_TREE_TOP := ../../.. include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak TARGET = idletrack ## ## SOURCES, OBJECTS ## C_SRC = idletrack.c OBJECTS = $(C_SRC:%.c=%.o) include $(PIDGIN_COMMON_RULES) ## ## TARGET DEFINITIONS ## .PHONY: all install clean all: $(TARGET).dll install: $(PIDGIN_INSTALL_DIR) cp $(TARGET).dll $(PIDGIN_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 $(PIDGIN_COMMON_TARGETS)