Mercurial > pidgin
annotate src/protocols/gg/Makefile.mingw @ 5832:db204c4a411b
[gaim-migrate @ 6263]
Values entered into multi-field dialogs are now set when the user hits
enter. This works with multiple entry fields in the multi-field dialogs,
which means multiple signals connecting many fields in multiple ways. This
could increase to multiple uses in the many protocols, as fields are added
to the many dialogs multiple times. This could increase for the many people
using multiple dialogs, especially if open a multiple number of times and
data entered into the many field entries. This may not even work, as I have
not tested it multiple times, but rather 0. However, it's CVS, so don't use
it yet, as it crashes on startup multiple times. Field entry.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Wed, 11 Jun 2003 21:24:27 +0000 |
parents | 7d65c06c7957 |
children | bb7723f0b4b9 |
rev | line source |
---|---|
3630 | 1 # |
2 # Makefile.mingw | |
3 # | |
4 # Description: Makefile for win32 (mingw) version of libgg | |
5 # | |
6 | |
7 # | |
8 # PATHS | |
9 # | |
10 | |
11 INCLUDE_DIR := . | |
12 GTK_TOP := ../../../../win32-dev/gtk_2_0 | |
13 GAIM_TOP := ../../.. | |
14 GG_ROOT := . | |
15 GAIM_INSTALL_DIR := $(GAIM_TOP)/win32-install-dir | |
16 | |
17 ## | |
18 ## VARIABLE DEFINITIONS | |
19 ## | |
20 | |
21 TARGET = libgg | |
22 | |
23 # Compiler Options | |
24 | |
3718
fd3880c03f0d
[gaim-migrate @ 3851]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
25 CFLAGS = |
3630 | 26 |
3718
fd3880c03f0d
[gaim-migrate @ 3851]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
27 DEFINES = |
3630 | 28 |
29 # Static or Plugin... | |
30 ifeq ($(TYPE),STATIC) | |
31 DEFINES += -DSTATIC | |
32 DLL_INSTALL_DIR = $(GAIM_INSTALL_DIR) | |
33 else | |
34 ifeq ($(TYPE),PLUGIN) | |
35 DLL_INSTALL_DIR = $(GAIM_INSTALL_DIR)/plugins | |
36 endif | |
37 endif | |
38 | |
39 | |
40 ## | |
41 ## INCLUDE MAKEFILES | |
42 ## | |
43 | |
3718
fd3880c03f0d
[gaim-migrate @ 3851]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
44 include $(GAIM_TOP)/src/win32/global.mak |
3630 | 45 |
46 ## | |
47 ## INCLUDE PATHS | |
48 ## | |
49 | |
50 INCLUDE_PATHS += -I$(GG_ROOT) \ | |
51 -I$(GTK_TOP)/include \ | |
52 -I$(GTK_TOP)/include/gtk-2.0 \ | |
53 -I$(GTK_TOP)/include/glib-2.0 \ | |
54 -I$(GTK_TOP)/include/pango-1.0 \ | |
55 -I$(GTK_TOP)/include/atk-1.0 \ | |
56 -I$(GTK_TOP)/lib/glib-2.0/include \ | |
57 -I$(GTK_TOP)/lib/gtk-2.0/include \ | |
58 -I$(GAIM_TOP)/src \ | |
59 -I$(GAIM_TOP)/src/win32 \ | |
60 -I$(GAIM_TOP) | |
61 | |
62 | |
63 LIB_PATHS = -L$(GTK_TOP)/lib \ | |
64 -L$(GAIM_TOP)/src \ | |
65 | |
66 | |
67 ## | |
68 ## SOURCES, OBJECTS | |
69 ## | |
70 | |
71 C_SRC = libgg.c \ | |
72 common.c \ | |
73 gg.c | |
74 | |
75 OBJECTS = $(C_SRC:%.c=%.o) | |
76 | |
77 | |
78 ## | |
79 ## LIBRARIES | |
80 ## | |
81 | |
82 LIBS = -lgtk-win32-2.0 -lglib-2.0 -lgdk-win32-2.0 -lgmodule-2.0 -lgobject-2.0 -lintl -lgaim -lws2_32 | |
83 | |
84 # -liberty | |
85 | |
86 | |
87 ## | |
88 ## RULES | |
89 ## | |
90 | |
91 # How to make a C file | |
92 | |
93 %.o: %.c | |
3718
fd3880c03f0d
[gaim-migrate @ 3851]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
94 $(CC) $(CFLAGS) $(DEFINES) $(INCLUDE_PATHS) -o $@ -c $< |
3630 | 95 |
96 ## | |
97 ## TARGET DEFINITIONS | |
98 ## | |
99 | |
100 .PHONY: all clean | |
101 | |
102 all: $(TARGET).dll | |
103 | |
104 install: | |
105 cp $(GG_ROOT)/$(TARGET).dll $(DLL_INSTALL_DIR) | |
106 | |
107 | |
108 ## | |
109 ## BUILD Dependencies | |
110 ## | |
111 | |
112 $(GAIM_TOP)/src/gaim.lib: | |
113 $(MAKE) -C $(GAIM_TOP)/src -f Makefile.mingw gaim.lib | |
114 | |
115 ## | |
116 ## BUILD DLL | |
117 ## | |
118 | |
119 $(TARGET).def: $(OBJECTS) | |
120 dlltool --dllname $(TARGET).dll -z $(TARGET).def \ | |
121 $(OBJECTS) | |
122 | |
123 $(TARGET).base: $(OBJECTS) $(GAIM_TOP)/src/gaim.lib | |
3718
fd3880c03f0d
[gaim-migrate @ 3851]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
124 $(CC) -mdll -o junk.tmp -Wl,--base-file,$@ $(OBJECTS) $(LIB_PATHS) $(LIBS) |
3630 | 125 rm -rf junk.tmp |
126 | |
127 $(TARGET).exp: $(TARGET).def $(TARGET).base | |
128 dlltool --dllname $(TARGET).dll --base-file $(TARGET).base \ | |
129 --output-exp $(TARGET).exp --def $(TARGET).def | |
130 rm -rf $(TARGET).base | |
131 | |
132 $(TARGET).dll: $(OBJECTS) $(TARGET).exp $(GAIM_TOP)/src/gaim.lib | |
133 dlltool -D $(TARGET).dll -d $(TARGET).def -l $(TARGET).lib | |
3718
fd3880c03f0d
[gaim-migrate @ 3851]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
134 $(CC) -mdll -o $(TARGET).dll $(OBJECTS) -Wl,$(TARGET).exp $(LIB_PATHS) $(LIBS) |
3630 | 135 rm -rf $(TARGET).exp |
136 | |
137 | |
138 ## | |
139 ## CLEAN RULES | |
140 ## | |
141 | |
142 clean: | |
143 rm -rf *.o | |
144 rm -rf $(TARGET).dll | |
145 rm -rf $(TARGET).lib | |
146 rm -rf $(TARGET).def |