# HG changeset patch # User Eric Warmenhoven # Date 956642551 0 # Node ID 450d62d40185d024e066533be72f2a73d0cd536e # Parent 789c792ed14b30a47a5e94a32af15192cab90c52 [gaim-migrate @ 182] Put the plugins on an automake system. committer: Tailor Script diff -r 789c792ed14b -r 450d62d40185 Makefile.am --- a/Makefile.am Tue Apr 25 04:29:04 2000 +0000 +++ b/Makefile.am Tue Apr 25 06:02:31 2000 +0000 @@ -1,8 +1,6 @@ EXTRA_DIST = gaim.spec gaim_applet.gnorba gaim_applet.desktop gaim_applet.soundlist \ - buddytrans plugins/CRAZY plugins/HOWTO plugins/Makefile plugins/SIGNALS \ - plugins/autorecon.c plugins/chkmail.c plugins/filectl.c plugins/gaiminc.c \ - plugins/iconaway.c plugins/simple.c plugins/spellchk.c README.plugins + buddytrans README.plugins if GNOMEAPPLET @@ -23,5 +21,5 @@ endif -SUBDIRS = m4 libfaim sounds pixmaps doc src +SUBDIRS = m4 libfaim sounds plugins pixmaps doc src ACLOCAL_AMFLAGS = -I m4 diff -r 789c792ed14b -r 450d62d40185 configure.in --- a/configure.in Tue Apr 25 04:29:04 2000 +0000 +++ b/configure.in Tue Apr 25 06:02:31 2000 +0000 @@ -96,6 +96,7 @@ AC_OUTPUT([Makefile src/Makefile sounds/Makefile + plugins/Makefile pixmaps/Makefile libfaim/Makefile doc/Makefile diff -r 789c792ed14b -r 450d62d40185 plugins/.cvsignore --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/plugins/.cvsignore Tue Apr 25 06:02:31 2000 +0000 @@ -0,0 +1,2 @@ +Makefile +Makefile.in diff -r 789c792ed14b -r 450d62d40185 plugins/Makefile --- a/plugins/Makefile Tue Apr 25 04:29:04 2000 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -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 \ - filectl.so iconaway.so - -.SUFFIXES: .c .so - -.c.so: - $(CC) $(CFLAGS) $(LDFLAGS) -Wl,-soname,$@ -o $@ $< diff -r 789c792ed14b -r 450d62d40185 plugins/Makefile.am --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/plugins/Makefile.am Tue Apr 25 06:02:31 2000 +0000 @@ -0,0 +1,7 @@ +SUFFIXES = .c .so +CFLAGS += $(GTK_CFLAGS) -I../src +LDFLAGS += -ggdb $(GTK_LIBS) -shared +.c.so: + $(CC) $(CFLAGS) -Wl,-soname,$@ -o $@ $< $(LDFLAGS) +plugin_DATA = autorecon.so iconaway.so spellchk.so +plugindir = $(libdir)/gaim