view plugins/Makefile @ 106:e05e6373ea5a

[gaim-migrate @ 116] Modified spellchk.c so now it uses a more customizable dictionary and added filectl.c to allow remote-control of gaim. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 12 Apr 2000 06:51:37 +0000
parents c76d4c0c5e3a
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 $@ $<