Mercurial > pidgin
changeset 5206:ffac5e345451
[gaim-migrate @ 5574]
Moved stuff that I'm pretty certain is core code into its own variable,
so we can split it out easier later.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Fri, 25 Apr 2003 07:35:42 +0000 |
parents | fefad67de2c7 |
children | 2819f90a20ba |
files | src/Makefile.am |
diffstat | 1 files changed, 71 insertions(+), 67 deletions(-) [+] |
line wrap: on
line diff
--- a/src/Makefile.am Fri Apr 25 06:47:33 2003 +0000 +++ b/src/Makefile.am Fri Apr 25 07:35:42 2003 +0000 @@ -5,74 +5,78 @@ SUBDIRS = protocols +CORESOURCES = \ + conversation.c \ + conversation.h \ + core.c \ + core.h \ + event.c \ + event.h \ + ft.c \ + ft.h \ + plugin.c \ + plugin.h \ + pounce.c \ + pounce.h \ + proxy.c \ + proxy.h \ + prpl.c \ + prpl.h \ + server.c \ + sound.c \ + sound.h \ + util.c \ + util.h + bin_PROGRAMS = gaim gaim-remote -gaim_SOURCES = about.c \ - away.c \ - browser.c \ - buddy.c \ - buddy_chat.c \ - conversation.c \ - conversation.h \ - core.c \ - core.h \ - dialogs.c \ - dnd-hints.c \ - dnd-hints.h \ - event.c \ - event.h \ - ft.c \ - ft.h \ - gaim.h \ - gaim-socket.h \ - gaim-disclosure.c \ - gaim-disclosure.h \ - gaimrc.c \ - gtkcellrendererprogress.c \ - gtkcellrendererprogress.h \ - gtkconv.c \ - gtkconv.h \ - gtkft.c \ - gtkft.h \ - gtkimhtml.c \ - gtkimhtml.h \ - gtklist.h \ - gtkplugin.c \ - gtkplugin.h \ - gtkpounce.c \ - gtkpounce.h \ - gtkutils.c \ - gtkutils.h \ - html.c \ - idle.c \ - list.c \ - list.h \ - log.c \ - main.c \ - md5.c \ - md5.h \ - plugin.c \ - plugin.h \ - multi.c \ - multi.h \ - pounce.c \ - pounce.h \ - prefs.c \ - privacy.h \ - proxy.c \ - proxy.h \ - prpl.c \ - prpl.h \ - server.c \ - session.c \ - socket.c \ - sound.c \ - sound.h \ - stock.c \ - stock.h \ - themes.c \ - util.c \ - util.h \ - ui.h +gaim_SOURCES = \ + $(CORESOURCES) \ + about.c \ + away.c \ + browser.c \ + buddy.c \ + buddy_chat.c \ + dialogs.c \ + dnd-hints.c \ + dnd-hints.h \ + gaim.h \ + gaim-socket.h \ + gaim-disclosure.c \ + gaim-disclosure.h \ + gaimrc.c \ + gtkcellrendererprogress.c \ + gtkcellrendererprogress.h \ + gtkconv.c \ + gtkconv.h \ + gtkft.c \ + gtkft.h \ + gtkimhtml.c \ + gtkimhtml.h \ + gtklist.h \ + gtkplugin.c \ + gtkplugin.h \ + gtkpounce.c \ + gtkpounce.h \ + gtkutils.c \ + gtkutils.h \ + html.c \ + idle.c \ + list.c \ + list.h \ + log.c \ + main.c \ + md5.c \ + md5.h \ + multi.c \ + multi.h \ + prefs.c \ + privacy.h \ + session.c \ + socket.c \ + stock.c \ + stock.h \ + themes.c \ + ui.h gaim_DEPENDENCIES = @LIBOBJS@ $(STATIC_LINK_LIBS) gaim_LDFLAGS = -export-dynamic