Mercurial > pidgin
comparison plugins/Makefile @ 94:9f6ce50ffb78
[gaim-migrate @ 104]
Woohoo, the landing of the plugins. Nearly everything necessary is here. The
only thing missing is that you can't load a plugin without signing on first
(at least, not without some trickery).
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Sun, 09 Apr 2000 11:18:25 +0000 |
parents | 308d0896d979 |
children | 247f540ea6e1 |
comparison
equal
deleted
inserted
replaced
93:5ca21b68eb29 | 94:9f6ce50ffb78 |
---|---|
1 CC = gcc | 1 CC = gcc |
2 CFLAGS = -Wall | 2 CFLAGS = -Wall `gnome-config --cflags gtk` -I../src |
3 LDFLAGS = -ggdb | 3 LDFLAGS = -ggdb `gnome-config --libs gtk` -shared |
4 | 4 |
5 all: simple.so gaiminc.so | 5 all: simple.so gaiminc.so |
6 | 6 |
7 simple.so: simple.c | 7 simple.so: simple.c |
8 $(CC) $(CFLAGS) $(LDFLAGS) -shared -Wl,-soname,$@ -o $@ $< | 8 $(CC) $(CFLAGS) $(LDFLAGS) -Wl,-soname,$@ -o $@ $< |
9 | 9 |
10 gaiminc.so: gaiminc.c | 10 gaiminc.so: gaiminc.c |
11 $(CC) $(CFLAGS) $(LDFLAGS) -shared -Wl,-soname,$@ -o $@ $< -I../src `gnome-config --cflags --libs gtk gnome gnomeui` | 11 $(CC) $(CFLAGS) $(LDFLAGS) -Wl,-soname,$@ -o $@ $< |