view plugins/Makefile @ 118:15a09c1715ee

[gaim-migrate @ 128] Got annoyed that when people were away, it would print their away message without any warning that it was an auto-response. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sat, 15 Apr 2000 17:34:56 +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 $@ $<