2013-08-23 00:18:53 +02:00
|
|
|
bin_PROGRAMS = toxic
|
|
|
|
|
|
|
|
|
|
|
|
toxic_SOURCES = $(top_srcdir)/src/main.c \
|
|
|
|
$(top_srcdir)/src/chat.h \
|
|
|
|
$(top_srcdir)/src/chat.c \
|
|
|
|
$(top_srcdir)/src/configdir.h \
|
|
|
|
$(top_srcdir)/src/configdir.c \
|
|
|
|
$(top_srcdir)/src/prompt.h \
|
|
|
|
$(top_srcdir)/src/prompt.c \
|
|
|
|
$(top_srcdir)/src/friendlist.h \
|
|
|
|
$(top_srcdir)/src/friendlist.c \
|
|
|
|
$(top_srcdir)/src/toxic_windows.h \
|
2013-09-16 00:16:41 +02:00
|
|
|
$(top_srcdir)/src/windows.c \
|
|
|
|
$(top_srcdir)/src/groupchat.c \
|
2013-09-19 23:04:46 +02:00
|
|
|
$(top_srcdir)/src/groupchat.h \
|
2013-11-10 03:58:44 +01:00
|
|
|
$(top_srcdir)/src/global_commands.c \
|
|
|
|
$(top_srcdir)/src/global_commands.h \
|
|
|
|
$(top_srcdir)/src/chat_commands.c \
|
|
|
|
$(top_srcdir)/src/chat_commands.h \
|
|
|
|
$(top_srcdir)/src/execute.c \
|
|
|
|
$(top_srcdir)/src/execute.h \
|
2013-09-21 02:35:03 +02:00
|
|
|
$(top_srcdir)/src/misc_tools.c \
|
|
|
|
$(top_srcdir)/src/misc_tools.h
|
2013-08-23 00:18:53 +02:00
|
|
|
|
2013-08-23 09:50:04 +02:00
|
|
|
toxic_CFLAGS = -I$(top_srcdir) \
|
|
|
|
$(NCURSES_CFLAGS) \
|
2013-08-23 00:18:53 +02:00
|
|
|
$(LIBSODIUM_CFLAGS) \
|
|
|
|
$(LIBTOXCORE_CFLAGS)
|
|
|
|
|
|
|
|
toxic_CPPFLAGS = '-DTOXICVER="$(TOXIC_VERSION)"'
|
|
|
|
|
|
|
|
toxic_LDADD = $(LIBTOXCORE_LDFLAGS) \
|
|
|
|
$(LIBSODIUM_LDFLAGS) \
|
|
|
|
$(NCURSES_LIBS) \
|
|
|
|
$(LIBTOXCORE_LIBS) \
|
|
|
|
$(LIBSODIUM_LIBS) \
|
|
|
|
$(WINSOCK2_LIBS)
|
|
|
|
|