view plugins/Makefile @ 150:d4e99c17e399

[gaim-migrate @ 160] Added daemon pixmaps, for all you BSD'ers out there. I really don't like the buddy chat one though, someone please redo it. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sun, 23 Apr 2000 23:30:50 +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 $@ $<