gnunet-ext

Template for writing GNUnet extensions
Log | Files | Refs | README | LICENSE

commit 42c16c3ae5c666a925daa773806e7d741cbde865
parent 0169892db251df639bf53e0014d0d74e8f748d5c
Author: Christian Grothoff <christian@grothoff.org>
Date:   Wed,  7 Mar 2012 15:42:55 +0000

-fixes

Diffstat:
MMakefile.am | 2+-
Rpo/Makevars.template -> po/Makevars | 0
Mpo/POTFILES.in | 1+
Msrc/ext/Makefile.am | 6+++---
4 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/Makefile.am b/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to produce Makefile.in -SUBDIRS = po src +SUBDIRS = src EXTRA_DIST = config.rpath \ install-sh diff --git a/po/Makevars.template b/po/Makevars diff --git a/po/POTFILES.in b/po/POTFILES.in @@ -1 +1,2 @@ # List of source files which contain translatable strings. +src/ext/gnunet-ext.c diff --git a/src/ext/Makefile.am b/src/ext/Makefile.am @@ -2,7 +2,8 @@ SUBDIRS = . INCLUDES = \ -I$(top_srcdir)/src/include \ - -I$(top_srcdir) + -I$(top_srcdir) \ + @GNUNET_CFLAGS@ lib_LTLIBRARIES = libgnunetext.la @@ -11,7 +12,7 @@ libgnunetext_la_SOURCES = \ libgnunetext_la_LIBADD = \ -lgnunetutil libgnunetext_la_LDFLAGS = \ - $(GN_LIB_LDFLAGS) $(WINFLAGS) \ + $(GNUNET_LIBS) $(WINFLAGS) \ -version-info 0:0:0 @@ -44,4 +45,3 @@ test_ext_api_SOURCES = \ test_ext_api_LDADD = \ $(top_builddir)/src/ext/libgnunetext.la \ -lgnunetutil -