comparison plugins/Makefile @ 91:308d0896d979

[gaim-migrate @ 101] Another test plugin showing yes, you can in fact do fun things with plugins committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Fri, 07 Apr 2000 19:53:11 +0000
parents f5b305c0d974
children 9f6ce50ffb78
comparison
equal deleted inserted replaced
90:f5b305c0d974 91:308d0896d979
1 CC = gcc 1 CC = gcc
2 CFLAGS = -Wall 2 CFLAGS = -Wall
3 LDFLAGS = -ggdb 3 LDFLAGS = -ggdb
4 4
5 all: simple.so gaiminc.so
6
5 simple.so: simple.c 7 simple.so: simple.c
6 $(CC) $(CFLAGS) $(LDFLAGS) -shared -Wl,-soname,$@ -o $@ $< 8 $(CC) $(CFLAGS) $(LDFLAGS) -shared -Wl,-soname,$@ -o $@ $<
9
10 gaiminc.so: gaiminc.c
11 $(CC) $(CFLAGS) $(LDFLAGS) -shared -Wl,-soname,$@ -o $@ $< -I../src `gnome-config --cflags --libs gtk gnome gnomeui`