view plugins/Makefile @ 144:e8dae982b37c

[gaim-migrate @ 154] I figured I should document how to make your plugin configurable and how to compile it (even though compiling it should be pretty obvious from reading the Makefile). committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Fri, 21 Apr 2000 00:03:52 +0000
parents e277d5f0c1dd
children 9331563bdb26
line wrap: on
line source

CC = gcc
CFLAGS = -Wall `gnome-config --cflags gtk` -I../src -g
LDFLAGS = -ggdb `gnome-config --libs gtk` -shared -lpthread

all: simple.so gaiminc.so autorecon.so spellchk.so chkmail.so \
	filectl.so iconaway.so

.SUFFIXES: .c .so

.c.so:
	$(CC) $(CFLAGS) $(LDFLAGS) -Wl,-soname,$@ -o $@ $<