comparison gtk/win32/IdleTracker/Makefile.mingw @ 14224:ab8a105eff62

[gaim-migrate @ 16905] First step of getting wingaim working again. libgaim and gtk are compiling. The protocols aren't compiling yet. There are a number of things that are compiling, but should be cleaned up. committer: Tailor Script <tailor@pidgin.im>
author Daniel Atallah <daniel.atallah@gmail.com>
date Sun, 20 Aug 2006 16:49:37 +0000
parents 009db0b357b5
children 8793fc8f7064
comparison
equal deleted inserted replaced
14223:7c560c01b8f9 14224:ab8a105eff62
7 # 7 #
8 # PATHS 8 # PATHS
9 # 9 #
10 10
11 GAIM_TOP := ../../.. 11 GAIM_TOP := ../../..
12 LIBGAIM_TOP := $(GAIM_TOP)/libgaim
12 GAIM_INSTALL_DIR := $(GAIM_TOP)/win32-install-dir 13 GAIM_INSTALL_DIR := $(GAIM_TOP)/win32-install-dir
13 14
14 ## 15 ##
15 ## VARIABLE DEFINITIONS 16 ## VARIABLE DEFINITIONS
16 ## 17 ##
25 26
26 ## 27 ##
27 ## INCLUDE MAKEFILES 28 ## INCLUDE MAKEFILES
28 ## 29 ##
29 30
30 include $(GAIM_TOP)/src/win32/global.mak 31 include $(LIBGAIM_TOP)/win32/global.mak
31 32
32 ## 33 ##
33 ## INCLUDE PATHS 34 ## INCLUDE PATHS
34 ## 35 ##
35 36
75 ## 76 ##
76 ## BUILD DLL 77 ## BUILD DLL
77 ## 78 ##
78 79
79 $(TARGET).dll: $(OBJECTS) 80 $(TARGET).dll: $(OBJECTS)
80 $(CC) -shared $(OBJECTS) $(LIB_PATHS) $(LIBS) $(DLL_LD_FLAGS) -Wl,--out-implib,$(TARGET).lib -o $(TARGET).dll 81 $(CC) -shared $(OBJECTS) $(LIB_PATHS) $(LIBS) $(DLL_LD_FLAGS) -Wl,--out-implib,$(TARGET).dll.a -o $(TARGET).dll
81 82
82 ## 83 ##
83 ## CLEAN RULES 84 ## CLEAN RULES
84 ## 85 ##
85 86
86 clean: 87 clean:
87 rm -rf *.o 88 rm -rf *.o
88 rm -rf $(TARGET).dll 89 rm -rf $(TARGET).dll
89 rm -rf $(TARGET).lib 90 rm -rf $(TARGET).dll.a
90 rm -rf $(TARGET).def