Mercurial > pidgin.yaz
view pidgin/win32/IdleTracker/Makefile.mingw @ 19089:c8962b52579e
- Wrote a tls_cached unknown_peer function that does many fun things,
including:
- check the certificate signature chain
- attempt to load the chain root from a CA database (not yet
implemented)
- check the chain root's CA-given signature
Since I have no Internet access, this has not been tested.
author | William Ehlhardt <williamehlhardt@gmail.com> |
---|---|
date | Fri, 10 Aug 2007 05:36:42 +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)