-add reverse autoadd; with test
[oweals/gnunet.git] / src / hello / Makefile.am
index 0122a1918cf85e0a3c15ba851db4286b302cfecf..563bcafb2c4c605e186de499b2a0be3ab3bbb217 100644 (file)
@@ -1,4 +1,5 @@
-INCLUDES = -I$(top_srcdir)/src/include
+# This Makefile.am is in the public domain
+AM_CPPFLAGS = -I$(top_srcdir)/src/include
 
 if MINGW
   WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
@@ -14,20 +15,39 @@ lib_LTLIBRARIES = libgnunethello.la
 libgnunethello_la_SOURCES = \
   hello.c address.c
 libgnunethello_la_LIBADD = \
- $(top_builddir)/src/util/libgnunetutil.la $(XLIB)
+ $(top_builddir)/src/util/libgnunetutil.la $(XLIB) \
+ $(LTLIBINTL)
 libgnunethello_la_LDFLAGS = \
-  $(GN_LIB_LDFLAGS)
+  $(GN_LIB_LDFLAGS) \
+  -version-info 1:0:1
+
+noinst_PROGRAMS = \
+ gnunet-hello
 
 check_PROGRAMS = \
- test_hello
+ test_hello \
+ test_friend_hello
 
 if ENABLE_TEST_RUN
+AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;
 TESTS = $(check_PROGRAMS)
 endif
 
 test_hello_SOURCES = \
  test_hello.c
 test_hello_LDADD = \
- $(top_builddir)/src/hello/libgnunethello.la \
+ libgnunethello.la \
+ $(top_builddir)/src/util/libgnunetutil.la  
+
+test_friend_hello_SOURCES = \
+ test_friend_hello.c
+test_friend_hello_LDADD = \
+ libgnunethello.la \
+ $(top_builddir)/src/util/libgnunetutil.la  
+
+gnunet_hello_SOURCES = \
+ gnunet-hello.c
+gnunet_hello_LDADD = \
+ libgnunethello.la \
  $(top_builddir)/src/util/libgnunetutil.la