Wed, 01 Oct 2003 04:29:44 +0000
[gaim-migrate @ 7667]
Move show_usage() to main.c.
|
7016
895a5ff9ebd4
[gaim-migrate @ 7579]
Christian Hammond <chipx86@chipx86.com>
parents:
6997
diff
changeset
|
1 | DIST_SUBDIRS = docklet gaim-remote gestures perl ssl tcl ticker |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
2 | |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
3 | if USE_PERL |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
4 | PERL_DIR = perl |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
5 | endif |
|
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
6 | |
| 6694 | 7 | if USE_TCL |
| 8 | TCL_DIR = tcl | |
| 9 | endif | |
| 10 | ||
|
7027
90cb7740b26f
[gaim-migrate @ 7590]
Christian Hammond <chipx86@chipx86.com>
parents:
7016
diff
changeset
|
11 | SUBDIRS = docklet gaim-remote gestures $(PERL_DIR) $(TCL_DIR) ssl ticker |
| 3391 | 12 | |
|
4202
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
13 | plugindir = $(libdir)/gaim |
|
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
14 | |
|
5267
14a104927560
[gaim-migrate @ 5639]
Christian Hammond <chipx86@chipx86.com>
parents:
5239
diff
changeset
|
15 | autorecon_la_LDFLAGS = -module -avoid-version |
| 6302 | 16 | history_la_LDFLAGS = -module -avoid-version |
|
5267
14a104927560
[gaim-migrate @ 5639]
Christian Hammond <chipx86@chipx86.com>
parents:
5239
diff
changeset
|
17 | iconaway_la_LDFLAGS = -module -avoid-version |
| 6302 | 18 | idle_la_LDFLAGS = -module -avoid-version |
| 19 | notify_la_LDFLAGS = -module -avoid-version | |
|
5267
14a104927560
[gaim-migrate @ 5639]
Christian Hammond <chipx86@chipx86.com>
parents:
5239
diff
changeset
|
20 | spellchk_la_LDFLAGS = -module -avoid-version |
| 6302 | 21 | statenotify_la_LDFLAGS = -module -avoid-version |
|
5267
14a104927560
[gaim-migrate @ 5639]
Christian Hammond <chipx86@chipx86.com>
parents:
5239
diff
changeset
|
22 | timestamp_la_LDFLAGS = -module -avoid-version |
|
4202
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
23 | |
|
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
24 | if PLUGINS |
|
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
25 | |
|
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
26 | plugin_LTLIBRARIES = \ |
|
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
27 | autorecon.la \ |
| 6302 | 28 | history.la \ |
|
4202
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
29 | iconaway.la \ |
| 6302 | 30 | idle.la \ |
| 31 | notify.la \ | |
|
4202
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
32 | spellchk.la \ |
| 6302 | 33 | statenotify.la \ |
| 34 | timestamp.la | |
|
5587
22cb9fe4798a
[gaim-migrate @ 5991]
Christian Hammond <chipx86@chipx86.com>
parents:
5267
diff
changeset
|
35 | |
|
5267
14a104927560
[gaim-migrate @ 5639]
Christian Hammond <chipx86@chipx86.com>
parents:
5239
diff
changeset
|
36 | autorecon_la_SOURCES = autorecon.c |
| 6302 | 37 | history_la_SOURCES = history.c |
|
5267
14a104927560
[gaim-migrate @ 5639]
Christian Hammond <chipx86@chipx86.com>
parents:
5239
diff
changeset
|
38 | iconaway_la_SOURCES = iconaway.c |
| 6302 | 39 | idle_la_SOURCES = idle.c |
| 40 | notify_la_SOURCES = notify.c | |
|
5267
14a104927560
[gaim-migrate @ 5639]
Christian Hammond <chipx86@chipx86.com>
parents:
5239
diff
changeset
|
41 | spellchk_la_SOURCES = spellchk.c |
| 6302 | 42 | statenotify_la_SOURCES = statenotify.c |
|
5267
14a104927560
[gaim-migrate @ 5639]
Christian Hammond <chipx86@chipx86.com>
parents:
5239
diff
changeset
|
43 | timestamp_la_SOURCES = timestamp.c |
|
4202
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
44 | |
|
5205
242b8aa81328
[gaim-migrate @ 5573]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
45 | endif # PLUGINS |
|
4202
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
46 | |
|
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
47 | EXTRA_DIST = \ |
|
6993
5027fd0fc071
[gaim-migrate @ 7549]
Christian Hammond <chipx86@chipx86.com>
parents:
6694
diff
changeset
|
48 | ChangeLog HOWTO \ |
| 6302 | 49 | filectl.c \ |
| 50 | mailchk.c \ | |
| 51 | gtik.c \ | |
| 52 | raw.c \ | |
|
6485
3c7ba18e32f1
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6386
diff
changeset
|
53 | signals-test.c \ |
| 6302 | 54 | simple.c \ |
| 55 | gaim.pl \ | |
| 56 | fortuneprofile.pl | |
|
4202
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
57 | |
|
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
58 | AM_CPPFLAGS = \ |
|
6360
c2bfe65b200c
[gaim-migrate @ 6864]
Robert McQueen <robot101@debian.org>
parents:
6353
diff
changeset
|
59 | -DDATADIR=\"$(datadir)\" \ |
|
4202
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
60 | -DVERSION=\"$(VERSION)\" \ |
|
6360
c2bfe65b200c
[gaim-migrate @ 6864]
Robert McQueen <robot101@debian.org>
parents:
6353
diff
changeset
|
61 | -I$(top_srcdir)/src \ |
|
4202
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
62 | $(DEBUG_CFLAGS) \ |
|
6360
c2bfe65b200c
[gaim-migrate @ 6864]
Robert McQueen <robot101@debian.org>
parents:
6353
diff
changeset
|
63 | $(GTK_CFLAGS) \ |
|
4202
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
64 | $(PLUGIN_CFLAGS) |
|
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
65 | |
|
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
66 | # |
|
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
67 | # This part allows people to build their own plugins in here. |
|
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
68 | # Yes, it's a mess. |
|
8b92de3b1c07
[gaim-migrate @ 4438]
Christian Hammond <chipx86@chipx86.com>
parents:
4104
diff
changeset
|
69 | # |
|
392
d3edc6236c3f
[gaim-migrate @ 402]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
391
diff
changeset
|
70 | SUFFIXES = .c .so |
| 172 | 71 | .c.so: |
|
6386
532551f27775
[gaim-migrate @ 6891]
Christian Hammond <chipx86@chipx86.com>
parents:
6371
diff
changeset
|
72 | $(LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I$(top_srcdir) $(AM_CPPFLAGS) $(CFLAGS) -c $< -o tmp$@.lo $(PLUGIN_CFLAGS) |
|
2893
d959d51a4b9f
[gaim-migrate @ 2906]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2867
diff
changeset
|
73 | $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o libtmp$@.la -rpath $(plugindir) tmp$@.lo $(LIBS) $(LDFLAGS) -module -avoid-version $(PLUGIN_LIBS) |
|
2342
7d51dd1e2194
[gaim-migrate @ 2355]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2327
diff
changeset
|
74 | @rm -f tmp$@.lo tmp$@.o libtmp$@.la |
|
2476
6b45e78bfca2
[gaim-migrate @ 2489]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2473
diff
changeset
|
75 | @cp .libs/libtmp$@.so* $@ |
|
2342
7d51dd1e2194
[gaim-migrate @ 2355]
Eric Warmenhoven <warmenhoven@yahoo.com>
parents:
2327
diff
changeset
|
76 | @rm -f .libs/libtmp$@.* |