diff plugins/Makefile @ 96:247f540ea6e1

[gaim-migrate @ 106] Okay, this is cool. I think everything finally completely works. You can even load plugins before you log in now (isn't that nice). committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sun, 09 Apr 2000 18:42:36 +0000
parents 9f6ce50ffb78
children f810fc7d423f
line wrap: on
line diff
--- a/plugins/Makefile	Sun Apr 09 11:36:09 2000 +0000
+++ b/plugins/Makefile	Sun Apr 09 18:42:36 2000 +0000
@@ -2,10 +2,9 @@
 CFLAGS = -Wall `gnome-config --cflags gtk` -I../src
 LDFLAGS = -ggdb `gnome-config --libs gtk` -shared
 
-all: simple.so gaiminc.so
+all: simple.so gaiminc.so file_control.so
 
-simple.so: simple.c
+.SUFFIXES: .c .so
+
+.c.so:
 	$(CC) $(CFLAGS) $(LDFLAGS) -Wl,-soname,$@ -o $@ $<
-
-gaiminc.so: gaiminc.c
-	$(CC) $(CFLAGS) $(LDFLAGS) -Wl,-soname,$@ -o $@ $<