2012-07-01 09:52:45 -04:00
|
|
|
bin_PROGRAMS = profanity
|
2013-05-06 18:04:46 -04:00
|
|
|
profanity_SOURCES = \
|
|
|
|
src/contact.c src/contact.h src/log.c src/common.c \
|
|
|
|
src/log.h src/profanity.c src/common.h \
|
|
|
|
src/main.c src/profanity.h src/chat_session.c \
|
2013-02-02 17:33:05 -05:00
|
|
|
src/chat_session.h src/muc.c src/muc.h src/jid.h src/jid.c \
|
2013-02-09 17:20:58 -05:00
|
|
|
src/resource.c src/resource.h \
|
2013-02-02 14:47:41 -05:00
|
|
|
src/xmpp/xmpp.h src/xmpp/capabilities.c src/xmpp/connection.c \
|
2013-02-02 14:57:46 -05:00
|
|
|
src/xmpp/iq.c src/xmpp/message.c src/xmpp/presence.c src/xmpp/stanza.c \
|
2013-02-02 15:27:46 -05:00
|
|
|
src/xmpp/stanza.h src/xmpp/message.h src/xmpp/iq.h src/xmpp/presence.h \
|
2013-02-03 17:40:54 -05:00
|
|
|
src/xmpp/capabilities.h src/xmpp/connection.h \
|
2013-05-06 16:53:59 -04:00
|
|
|
src/xmpp/roster.c src/xmpp/roster.h \
|
2013-04-21 12:33:12 -04:00
|
|
|
src/ui/ui.h src/ui/window.c src/ui/window.h src/ui/core.c \
|
2013-02-02 16:43:59 -05:00
|
|
|
src/ui/titlebar.c src/ui/statusbar.c src/ui/inputwin.c \
|
2013-04-21 15:17:06 -04:00
|
|
|
src/ui/console.c src/ui/notifier.c src/ui/notifier.h \
|
2013-02-02 16:43:59 -05:00
|
|
|
src/command/command.h src/command/command.c src/command/history.c \
|
|
|
|
src/command/history.h src/command/parser.c \
|
|
|
|
src/command/parser.h \
|
|
|
|
src/tools/autocomplete.c src/tools/autocomplete.h \
|
|
|
|
src/tools/history.c src/tools/history.h \
|
2013-02-02 16:59:29 -05:00
|
|
|
src/tools/tinyurl.c src/tools/tinyurl.h \
|
|
|
|
src/config/accounts.c src/config/accounts.h \
|
|
|
|
src/config/preferences.c src/config/preferences.h \
|
|
|
|
src/config/theme.c src/config/theme.h
|
2012-07-08 17:54:14 -04:00
|
|
|
|
|
|
|
TESTS = tests/testsuite
|
|
|
|
check_PROGRAMS = tests/testsuite
|
2013-05-06 18:04:46 -04:00
|
|
|
tests_testsuite_SOURCES = \
|
|
|
|
src/contact.c src/contact.h src/log.c src/common.c \
|
|
|
|
src/log.h src/profanity.c src/common.h \
|
|
|
|
src/profanity.h src/chat_session.c \
|
|
|
|
src/chat_session.h src/muc.c src/muc.h src/jid.h src/jid.c \
|
|
|
|
src/resource.c src/resource.h \
|
|
|
|
src/xmpp/xmpp.h src/xmpp/capabilities.c src/xmpp/connection.c \
|
|
|
|
src/xmpp/iq.c src/xmpp/message.c src/xmpp/presence.c src/xmpp/stanza.c \
|
|
|
|
src/xmpp/stanza.h src/xmpp/message.h src/xmpp/iq.h src/xmpp/presence.h \
|
|
|
|
src/xmpp/capabilities.h src/xmpp/connection.h \
|
|
|
|
src/xmpp/roster.c src/xmpp/roster.h \
|
|
|
|
src/ui/ui.h src/ui/window.c src/ui/window.h src/ui/core.c \
|
|
|
|
src/ui/titlebar.c src/ui/statusbar.c src/ui/inputwin.c \
|
|
|
|
src/ui/console.c src/ui/notifier.c src/ui/notifier.h \
|
|
|
|
src/command/command.h src/command/command.c src/command/history.c \
|
|
|
|
src/command/history.h src/command/parser.c \
|
|
|
|
src/command/parser.h \
|
|
|
|
src/tools/autocomplete.c src/tools/autocomplete.h \
|
|
|
|
src/tools/history.c src/tools/history.h \
|
|
|
|
src/tools/tinyurl.c src/tools/tinyurl.h \
|
|
|
|
src/config/accounts.c src/config/accounts.h \
|
|
|
|
src/config/preferences.c src/config/preferences.h \
|
|
|
|
src/config/theme.c src/config/theme.h \
|
|
|
|
tests/test_roster.c tests/test_common.c tests/test_history.c \
|
|
|
|
tests/test_autocomplete.c tests/testsuite.c tests/test_parser.c \
|
|
|
|
tests/test_jid.c
|
2012-07-08 18:40:15 -04:00
|
|
|
tests_testsuite_LDADD = -lheadunit -lstdc++
|
2012-07-01 09:52:45 -04:00
|
|
|
|
2012-08-19 15:34:05 -04:00
|
|
|
man_MANS = docs/profanity.1
|