comparison plugins/Makefile.am @ 1047:ece2d1543b20

[gaim-migrate @ 1057] Plugins now use GModule. Protocol plugins can be dynamically updated. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 01 Nov 2000 22:30:36 +0000
parents 1c663beef29d
children 49799527aebf
comparison
equal deleted inserted replaced
1046:4593605da0e2 1047:ece2d1543b20
1 LDFLAGS += $(LDADD) $(LIBS) -shared 1 LDFLAGS += $(LDADD) $(LIBS) -ggdb -shared
2 CFLAGS += -DHAVE_CONFIG_H
2 SUFFIXES = .c .so 3 SUFFIXES = .c .so
3 .c.so: 4 .c.so:
4 $(CC) $(CFLAGS) -I../src -DVERSION=\"$(VERSION)\" -fPIC -o $@ $< $(LDFLAGS) $(PLUGIN_LIBS) 5 $(CC) $(CFLAGS) -I../src -DVERSION=\"$(VERSION)\" -o $@ $< $(LDFLAGS) $(PLUGIN_LIBS)
5 6
6 if PLUGINS 7 if PLUGINS
7 plugin_DATA = autorecon.so iconaway.so notify.so spellchk.so lagmeter.so 8 plugin_DATA = autorecon.so iconaway.so notify.so spellchk.so lagmeter.so
8 plugindir = $(libdir)/gaim 9 plugindir = $(libdir)/gaim
9 10
10 clean distclean clean-recursive distclean-recursive: 11 clean distclean:
11 $(RM) $(plugin_DATA) 12 $(RM) $(plugin_DATA)
12 endif 13 endif
13 14
14 15
15 16