view plugins/Makefile @ 112:a57fd3390ee4

[gaim-migrate @ 122] Fixed the bug where if there is more than one word either being removed or inserted, remaining checks hold. E.g. if there is a rule that 'm' gets replaced with 'your roommate' (this is actually is one of my rules), and another rule is 'u' -> 'you', typing "m u" used to be "your roommate u", but is now "your roommate you" (don't ask, it's a stupid example, but it has implications). committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Fri, 14 Apr 2000 06:02:26 +0000
parents e05e6373ea5a
children 5f294f7c4f2e
line wrap: on
line source

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

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

.SUFFIXES: .c .so

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