view plugins/Makefile @ 99:f810fc7d423f

[gaim-migrate @ 109] Autorecon reconnects you on signoff (kick). Made other small changes. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sun, 09 Apr 2000 20:29:25 +0000
parents 247f540ea6e1
children c5a1a1b05c26
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

.SUFFIXES: .c .so

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