diff options
| author | Christopher Davis <loafier@gmail.com> | 2006-08-14 04:45:46 +0000 |
|---|---|---|
| committer | Christopher Davis <loafier@gmail.com> | 2006-08-14 04:45:46 +0000 |
| commit | ce3d6fcba4587feb5555a9b85c6fdeaa0b74553f (patch) | |
| tree | 73de668e3b48b475ae1fac6a8317f577ec2c0663 /src/objects/Makefile.am | |
| parent | 3a028090359e5d5d24ccbfc11d9b6ff5681aab4f (diff) | |
| download | irssi-python-ce3d6fcba4587feb5555a9b85c6fdeaa0b74553f.tar.gz irssi-python-ce3d6fcba4587feb5555a9b85c6fdeaa0b74553f.tar.xz irssi-python-ce3d6fcba4587feb5555a9b85c6fdeaa0b74553f.zip | |
adding autotool stuff
git-svn-id: http://svn.irssi.org/repos/irssi-python@4313 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/objects/Makefile.am')
| -rw-r--r-- | src/objects/Makefile.am | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/objects/Makefile.am b/src/objects/Makefile.am new file mode 100644 index 0000000..4164e8f --- /dev/null +++ b/src/objects/Makefile.am @@ -0,0 +1,26 @@ +noinst_LTLIBRARIES = libobjects.la + +INCLUDES = $(IRSSI_PYTHON_INCLUDES) \ + -I$(top_srcdir)/src + +libobjects_la_SOURCES = \ + pyscript-object.c base-objects.c window-item-object.c channel-object.c \ + query-object.c server-object.c connect-object.c irc-server-object.c \ + irc-connect-object.c irc-channel-object.c ban-object.c nick-object.c \ + chatnet-object.c reconnect-object.c window-object.c textdest-object.c \ + rawlog-object.c log-object.c logitem-object.c ignore-object.c \ + dcc-object.c dcc-chat-object.c dcc-get-object.c dcc-send-object.c \ + netsplit-object.c netsplit-server-object.c netsplit-channel-object.c \ + notifylist-object.c process-object.c command-object.c theme-object.c \ + statusbar-item-object.c main-window-object.c factory.c + +noinst_HEADERS = \ + ban-object.h base-objects.h channel-object.h chatnet-object.h \ + command-object.h connect-object.h dcc-chat-object.h dcc-get-object.h \ + dcc-object.h dcc-send-object.h factory.h ignore-object.h \ + irc-channel-object.h irc-connect-object.h irc-server-object.h logitem-object.h \ + log-object.h main-window-object.h netsplit-channel-object.h netsplit-object.h \ + netsplit-server-object.h nick-object.h notifylist-object.h process-object.h \ + pyscript-object.h query-object.h rawlog-object.h reconnect-object.h \ + server-object.h statusbar-item-object.h textdest-object.h theme-object.h \ + window-item-object.h window-object.h |
