Mercurial > pidgin
annotate plugins/Makefile.mingw @ 6588:7f5f57dd5cac
[gaim-migrate @ 7110]
I'm breaking debug. I cannot for the life of me figure out the enum stuff
in perl XSUB. Everything is ending up 0 (in other words, it's probably
not finding them). So, people can use debug_info and such.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Sun, 24 Aug 2003 01:08:32 +0000 |
parents | ea689dbf1a57 |
children | c92dbccd7448 |
rev | line source |
---|---|
3630 | 1 # |
2 # Makefile.mingw | |
3 # | |
4 # Description: Makefile for win32 (mingw) version of Gaim Plugins | |
5 # | |
6 | |
7 # | |
8 # PATHS | |
9 # | |
10 | |
11 GAIM_PLUGINS := . | |
12 GAIM_TOP := .. | |
13 GTK_TOP := ../../win32-dev/gtk_2_0 | |
14 OSCAR_ROOT := ../src/protocols/oscar | |
15 GAIM_INSTALL_DIR := $(GAIM_TOP)/win32-install-dir | |
16 TICKER := ./ticker | |
3729 | 17 TRANSPARENCY := ./win32/transparency |
4133
d3d1dac745d4
[gaim-migrate @ 4351]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4123
diff
changeset
|
18 WINPREFS := ./win32/winprefs |
5468
809ef68273c8
[gaim-migrate @ 5860]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4726
diff
changeset
|
19 PERL_PLUGIN_LOADER := ./perl |
6081
7c98adb00f3a
[gaim-migrate @ 6540]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5932
diff
changeset
|
20 DOCKLET := ./docklet |
3630 | 21 |
22 ## | |
23 ## VARIABLE DEFINITIONS | |
24 ## | |
25 | |
26 # Compiler Options | |
27 | |
3715
764d6f1848b2
[gaim-migrate @ 3848]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
28 CFLAGS = |
3630 | 29 |
3715
764d6f1848b2
[gaim-migrate @ 3848]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
30 DEFINES = |
3630 | 31 |
32 .SUFFIXES: | |
33 .SUFFIXES: .c .dll | |
34 | |
35 ## | |
36 ## INCLUDE MAKEFILES | |
37 ## | |
38 | |
3715
764d6f1848b2
[gaim-migrate @ 3848]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3630
diff
changeset
|
39 include $(GAIM_TOP)/src/win32/global.mak |
3630 | 40 |
41 ## | |
42 ## INCLUDE PATHS | |
43 ## | |
44 | |
45 INCLUDE_PATHS += -I$(OSCAR_ROOT) \ | |
46 -I$(GTK_TOP)/include \ | |
47 -I$(GTK_TOP)/include/gtk-2.0 \ | |
48 -I$(GTK_TOP)/include/glib-2.0 \ | |
49 -I$(GTK_TOP)/include/pango-1.0 \ | |
50 -I$(GTK_TOP)/include/atk-1.0 \ | |
51 -I$(GTK_TOP)/lib/glib-2.0/include \ | |
52 -I$(GTK_TOP)/lib/gtk-2.0/include \ | |
53 -I$(GAIM_TOP) \ | |
54 -I$(GAIM_TOP)/src \ | |
55 -I$(GAIM_TOP)/src/win32 | |
56 | |
57 | |
58 LIB_PATHS = -L$(GTK_TOP)/lib \ | |
59 -L$(GAIM_TOP)/src | |
60 | |
61 | |
62 ## | |
63 ## LIBRARIES | |
64 ## | |
65 | |
5932
bb7723f0b4b9
[gaim-migrate @ 6372]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5468
diff
changeset
|
66 LIBS = -lgtk-win32-2.0 \ |
bb7723f0b4b9
[gaim-migrate @ 6372]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5468
diff
changeset
|
67 -lglib-2.0 \ |
bb7723f0b4b9
[gaim-migrate @ 6372]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5468
diff
changeset
|
68 -lgdk-win32-2.0 \ |
bb7723f0b4b9
[gaim-migrate @ 6372]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5468
diff
changeset
|
69 -lgobject-2.0 \ |
bb7723f0b4b9
[gaim-migrate @ 6372]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5468
diff
changeset
|
70 -lgmodule-2.0 \ |
6343
46355beb6c30
[gaim-migrate @ 6842]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6081
diff
changeset
|
71 -lgdk_pixbuf-2.0 \ |
46355beb6c30
[gaim-migrate @ 6842]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6081
diff
changeset
|
72 -lpango-1.0 \ |
5932
bb7723f0b4b9
[gaim-migrate @ 6372]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5468
diff
changeset
|
73 -lintl \ |
bb7723f0b4b9
[gaim-migrate @ 6372]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5468
diff
changeset
|
74 -lws2_32 \ |
bb7723f0b4b9
[gaim-migrate @ 6372]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5468
diff
changeset
|
75 -lgaim |
3630 | 76 |
77 ## | |
78 ## RULES | |
79 ## | |
80 | |
81 ## | |
82 ## TARGET DEFINITIONS | |
83 ## | |
84 | |
85 .PHONY: all clean | |
86 | |
87 all: plugins | |
88 $(MAKE) -C $(TICKER) -f Makefile.mingw | |
4133
d3d1dac745d4
[gaim-migrate @ 4351]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4123
diff
changeset
|
89 $(MAKE) -C $(WINPREFS) -f Makefile.mingw |
4726
0b1c01fd68f1
[gaim-migrate @ 5039]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4709
diff
changeset
|
90 $(MAKE) -C $(TRANSPARENCY) -f Makefile.mingw |
5468
809ef68273c8
[gaim-migrate @ 5860]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4726
diff
changeset
|
91 $(MAKE) -C $(PERL_PLUGIN_LOADER) -f Makefile.mingw |
6081
7c98adb00f3a
[gaim-migrate @ 6540]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5932
diff
changeset
|
92 $(MAKE) -C $(DOCKLET) -f Makefile.mingw |
4709
57d74064445a
[gaim-migrate @ 5020]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4610
diff
changeset
|
93 |
3630 | 94 install: |
4610
758f2edc3298
[gaim-migrate @ 4899]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4498
diff
changeset
|
95 cp $(GAIM_PLUGINS)/*.dll $(GAIM_INSTALL_DIR)/plugins |
3630 | 96 $(MAKE) -C $(TICKER) -f Makefile.mingw install |
4133
d3d1dac745d4
[gaim-migrate @ 4351]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4123
diff
changeset
|
97 $(MAKE) -C $(WINPREFS) -f Makefile.mingw install |
4726
0b1c01fd68f1
[gaim-migrate @ 5039]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4709
diff
changeset
|
98 $(MAKE) -C $(TRANSPARENCY) -f Makefile.mingw install |
5468
809ef68273c8
[gaim-migrate @ 5860]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4726
diff
changeset
|
99 $(MAKE) -C $(PERL_PLUGIN_LOADER) -f Makefile.mingw install |
6081
7c98adb00f3a
[gaim-migrate @ 6540]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5932
diff
changeset
|
100 $(MAKE) -C $(DOCKLET) -f Makefile.mingw install |
4709
57d74064445a
[gaim-migrate @ 5020]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4610
diff
changeset
|
101 |
3630 | 102 # |
103 # BUILD Plugin | |
104 # | |
105 | |
106 .c.dll: | |
5932
bb7723f0b4b9
[gaim-migrate @ 6372]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5468
diff
changeset
|
107 $(CC) $(CFLAGS) $(DEFINES) $(INCLUDE_PATHS) -o $@.o -c $< |
bb7723f0b4b9
[gaim-migrate @ 6372]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5468
diff
changeset
|
108 $(CC) -shared $@.o $(LIB_PATHS) $(LIBS) $(DLL_LD_FLAGS) -o $@ |
3630 | 109 |
6449
ea689dbf1a57
[gaim-migrate @ 6958]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6343
diff
changeset
|
110 plugins: \ |
ea689dbf1a57
[gaim-migrate @ 6958]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6343
diff
changeset
|
111 autorecon.dll \ |
ea689dbf1a57
[gaim-migrate @ 6958]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6343
diff
changeset
|
112 history.dll \ |
ea689dbf1a57
[gaim-migrate @ 6958]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6343
diff
changeset
|
113 iconaway.dll \ |
ea689dbf1a57
[gaim-migrate @ 6958]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6343
diff
changeset
|
114 idle.dll \ |
ea689dbf1a57
[gaim-migrate @ 6958]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6343
diff
changeset
|
115 spellchk.dll \ |
ea689dbf1a57
[gaim-migrate @ 6958]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6343
diff
changeset
|
116 statenotify.dll \ |
ea689dbf1a57
[gaim-migrate @ 6958]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6343
diff
changeset
|
117 timestamp.dll |
3630 | 118 |
119 | |
120 ## | |
121 ## CLEAN RULES | |
122 ## | |
123 | |
124 clean: | |
125 rm -rf *.o | |
126 rm -rf *.dll | |
127 $(MAKE) -C $(TICKER) -f Makefile.mingw clean | |
4401
3f09e83b569a
[gaim-migrate @ 4670]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4363
diff
changeset
|
128 $(MAKE) -C $(TRANSPARENCY) -f Makefile.mingw clean |
4133
d3d1dac745d4
[gaim-migrate @ 4351]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4123
diff
changeset
|
129 $(MAKE) -C $(WINPREFS) -f Makefile.mingw clean |
5468
809ef68273c8
[gaim-migrate @ 5860]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4726
diff
changeset
|
130 $(MAKE) -C $(PERL_PLUGIN_LOADER) -f Makefile.mingw clean |
6081
7c98adb00f3a
[gaim-migrate @ 6540]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5932
diff
changeset
|
131 $(MAKE) -C $(DOCKLET) -f Makefile.mingw clean |