gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r26660 - in libmicrohttpd/doc: . examples


From: gnunet
Subject: [GNUnet-SVN] r26660 - in libmicrohttpd/doc: . examples
Date: Fri, 29 Mar 2013 17:23:19 +0100

Author: grothoff
Date: 2013-03-29 17:23:19 +0100 (Fri, 29 Mar 2013)
New Revision: 26660

Added:
   libmicrohttpd/doc/examples/Makefile.am
Modified:
   libmicrohttpd/doc/Makefile.am
   libmicrohttpd/doc/examples/
Log:
-also build examples

Modified: libmicrohttpd/doc/Makefile.am
===================================================================
--- libmicrohttpd/doc/Makefile.am       2013-03-29 16:17:16 UTC (rev 26659)
+++ libmicrohttpd/doc/Makefile.am       2013-03-29 16:23:19 UTC (rev 26660)
@@ -1,6 +1,8 @@
 man_MANS = libmicrohttpd.3
 EXTRA_DIST = $(man_MANS) Doxyfile 
 
+SUBDIRS = . examples
+
 DISTCLEANFILES = \
   libmicrohttpd.cps \
   libmicrohttpd.dvi \
@@ -20,14 +22,6 @@
   chapters/responseheaders.inc \
   chapters/tlsauthentication.inc \
   chapters/sessions.inc \
-  examples/basicauthentication.c \
-  examples/hellobrowser.c \
-  examples/largepost.c \
-  examples/logging.c \
-  examples/responseheaders.c \
-  examples/simplepost.c \
-  examples/tlsauthentication.c \
-  examples/sessions.c \
   fdl-1.3.texi \
   lgpl.texi \
   ecos.texi

Index: libmicrohttpd/doc/examples
===================================================================
--- libmicrohttpd/doc/examples  2013-03-29 16:17:16 UTC (rev 26659)
+++ libmicrohttpd/doc/examples  2013-03-29 16:23:19 UTC (rev 26660)

Property changes on: libmicrohttpd/doc/examples
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,11 ##
+tlsauthentication
+simplepost
+sessions
+responseheaders
+Makefile.in
+Makefile
+logging
+largepost
+hellobrowser
+basicauthentication
+.deps
Added: libmicrohttpd/doc/examples/Makefile.am
===================================================================
--- libmicrohttpd/doc/examples/Makefile.am                              (rev 0)
+++ libmicrohttpd/doc/examples/Makefile.am      2013-03-29 16:23:19 UTC (rev 
26660)
@@ -0,0 +1,76 @@
+SUBDIRS  = .
+
+if USE_PRIVATE_PLIBC_H
+ PLIBC_INCLUDE = -I$(top_srcdir)/src/include/plibc
+endif
+
+AM_CPPFLAGS = \
+  $(PLIBC_INCLUDE) \
+  -I$(top_srcdir)/src/include \
+  @LIBGCRYPT_CFLAGS@
+
+if USE_COVERAGE
+  AM_CFLAGS = --coverage
+endif
+
+# example programs
+noinst_PROGRAMS = \
+  basicauthentication \
+  hellobrowser \
+  logging \
+  responseheaders \
+  sessions 
+
+if ENABLE_HTTPS
+noinst_PROGRAMS += \
+  tlsauthentication
+endif
+if HAVE_POSTPROCESSOR
+noinst_PROGRAMS += simplepost largepost
+endif
+
+if HAVE_W32
+IBERTY=-liberty
+endif
+
+basicauthentication_SOURCES = \
+ basicauthentication.c 
+basicauthentication_LDADD = \
+ $(top_builddir)/src/daemon/libmicrohttpd.la 
+
+hellobrowser_SOURCES = \
+ hellobrowser.c 
+hellobrowser_LDADD = \
+ $(top_builddir)/src/daemon/libmicrohttpd.la 
+
+logging_SOURCES = \
+ logging.c 
+logging_LDADD = \
+ $(top_builddir)/src/daemon/libmicrohttpd.la \
+ $(IBERTY)
+
+responseheaders_SOURCES = \
+ responseheaders.c 
+responseheaders_LDADD = \
+ $(top_builddir)/src/daemon/libmicrohttpd.la 
+
+sessions_SOURCES = \
+ sessions.c 
+sessions_LDADD = \
+ $(top_builddir)/src/daemon/libmicrohttpd.la 
+
+tlsauthentication_SOURCES = \
+ tlsauthentication.c 
+tlsauthentication_LDADD = \
+ $(top_builddir)/src/daemon/libmicrohttpd.la 
+
+simplepost_SOURCES = \
+ simplepost.c 
+simplepost_LDADD = \
+ $(top_builddir)/src/daemon/libmicrohttpd.la 
+
+largepost_SOURCES = \
+ largepost.c 
+largepost_LDADD = \
+ $(top_builddir)/src/daemon/libmicrohttpd.la 
+




reply via email to

[Prev in Thread] Current Thread [Next in Thread]