From 4ed70a930202b103e7e80b8dc925e0aaa4622595 Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Wed, 29 Jul 2009 12:07:54 +0200 Subject: initial commit --- examples/chat/Makefile.am | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 examples/chat/Makefile.am (limited to 'examples/chat/Makefile.am') diff --git a/examples/chat/Makefile.am b/examples/chat/Makefile.am new file mode 100644 index 0000000..afdb827 --- /dev/null +++ b/examples/chat/Makefile.am @@ -0,0 +1,15 @@ +INCLUDES = -I$(top_builddir) -I$(top_builddir)/include + +noinst_PROGRAMS = chatroom display prompt + +chatroom_SOURCES = chatroom.cpp +chatroom_LDADD = $(top_builddir)/src/libzs.la +chatroom_CXXFLAGS = -Wall -pedantic -Werror + +display_SOURCES = display.cpp +display_LDADD = $(top_builddir)/src/libzs.la +display_CXXFLAGS = -Wall -pedantic -Werror + +prompt_SOURCES = prompt.cpp +prompt_LDADD = $(top_builddir)/src/libzs.la +prompt_CXXFLAGS = -Wall -pedantic -Werror -- cgit v1.2.3