comparison libpurple/plugins/Makefile.am @ 19958:2c69ceca8067

Adding a notify API example plugin.
author John Bailey <rekkanoryo@rekkanoryo.org>
date Wed, 12 Sep 2007 17:21:08 +0000
parents 2729cdff43cd
children 60f5abc6cf0c db4400f75dd8
comparison
equal deleted inserted replaced
19957:f0a87b0d9955 19958:2c69ceca8067
32 helloworld_la_LDFLAGS = -module -avoid-version 32 helloworld_la_LDFLAGS = -module -avoid-version
33 idle_la_LDFLAGS = -module -avoid-version 33 idle_la_LDFLAGS = -module -avoid-version
34 joinpart_la_LDFLAGS = -module -avoid-version 34 joinpart_la_LDFLAGS = -module -avoid-version
35 log_reader_la_LDFLAGS = -module -avoid-version 35 log_reader_la_LDFLAGS = -module -avoid-version
36 newline_la_LDFLAGS = -module -avoid-version 36 newline_la_LDFLAGS = -module -avoid-version
37 notify_example_la_LDFLAGS = -module -avoid-version
37 offlinemsg_la_LDFLAGS = -module -avoid-version 38 offlinemsg_la_LDFLAGS = -module -avoid-version
38 pluginpref_example_la_LDFLAGS = -module -avoid-version 39 pluginpref_example_la_LDFLAGS = -module -avoid-version
39 psychic_la_LDFLAGS = -module -avoid-version 40 psychic_la_LDFLAGS = -module -avoid-version
40 signals_test_la_LDFLAGS = -module -avoid-version 41 signals_test_la_LDFLAGS = -module -avoid-version
41 simple_la_LDFLAGS = -module -avoid-version 42 simple_la_LDFLAGS = -module -avoid-version
61 noinst_LTLIBRARIES = \ 62 noinst_LTLIBRARIES = \
62 ciphertest.la \ 63 ciphertest.la \
63 codeinline.la \ 64 codeinline.la \
64 debug_example.la \ 65 debug_example.la \
65 helloworld.la \ 66 helloworld.la \
67 notify_example.la \
66 pluginpref_example.la \ 68 pluginpref_example.la \
67 signals_test.la \ 69 signals_test.la \
68 simple.la 70 simple.la
69 71
70 autoaccept_la_SOURCES = autoaccept.c 72 autoaccept_la_SOURCES = autoaccept.c
75 helloworld_la_SOURCES = helloworld.c 77 helloworld_la_SOURCES = helloworld.c
76 idle_la_SOURCES = idle.c 78 idle_la_SOURCES = idle.c
77 joinpart_la_SOURCES = joinpart.c 79 joinpart_la_SOURCES = joinpart.c
78 log_reader_la_SOURCES = log_reader.c 80 log_reader_la_SOURCES = log_reader.c
79 newline_la_SOURCES = newline.c 81 newline_la_SOURCES = newline.c
82 notify_example_la_SOURCES = notify_example.c
80 offlinemsg_la_SOURCES = offlinemsg.c 83 offlinemsg_la_SOURCES = offlinemsg.c
81 pluginpref_example_la_SOURCES = pluginpref_example.c 84 pluginpref_example_la_SOURCES = pluginpref_example.c
82 psychic_la_SOURCES = psychic.c 85 psychic_la_SOURCES = psychic.c
83 signals_test_la_SOURCES = signals-test.c 86 signals_test_la_SOURCES = signals-test.c
84 simple_la_SOURCES = simple.c 87 simple_la_SOURCES = simple.c
90 codeinline_la_LIBADD = $(GLIB_LIBS) 93 codeinline_la_LIBADD = $(GLIB_LIBS)
91 idle_la_LIBADD = $(GLIB_LIBS) 94 idle_la_LIBADD = $(GLIB_LIBS)
92 joinpart_la_LIBADD = $(GLIB_LIBS) 95 joinpart_la_LIBADD = $(GLIB_LIBS)
93 log_reader_la_LIBADD = $(GLIB_LIBS) 96 log_reader_la_LIBADD = $(GLIB_LIBS)
94 newline_la_LIBADD = $(GLIB_LIBS) 97 newline_la_LIBADD = $(GLIB_LIBS)
98 notify_example_la_LIBADD = $(GLIB_LIBS)
95 offlinemsg_la_LIBADD = $(GLIB_LIBS) 99 offlinemsg_la_LIBADD = $(GLIB_LIBS)
96 pluginpref_example_la_LIBADD = $(GLIB_LIBS) 100 pluginpref_example_la_LIBADD = $(GLIB_LIBS)
97 psychic_la_LIBADD = $(GLIB_LIBS) 101 psychic_la_LIBADD = $(GLIB_LIBS)
98 signals_test_la_LIBADD = $(GLIB_LIBS) 102 signals_test_la_LIBADD = $(GLIB_LIBS)
99 simple_la_LIBADD = $(GLIB_LIBS) 103 simple_la_LIBADD = $(GLIB_LIBS)