From 78e32265532d383c451e34afe46f1139827fb43f Mon Sep 17 00:00:00 2001 From: snowdrop Date: Thu, 11 Dec 2003 14:51:04 +0000 Subject: initial import --- nanohttp/Makefile.am | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 nanohttp/Makefile.am (limited to 'nanohttp/Makefile.am') diff --git a/nanohttp/Makefile.am b/nanohttp/Makefile.am new file mode 100644 index 0000000..c290ff6 --- /dev/null +++ b/nanohttp/Makefile.am @@ -0,0 +1,29 @@ +## Source directory + + +h_sources = nanohttp-common.h\ +nanohttp-client.h\ +nanohttp-socket.h + +cc_sources = nanohttp-common.c\ +nanohttp-client.c\ +nanohttp-socket.c + +library_includedir=$(includedir)/$(NANOHTTP_LIBRARY_NAME)-$(NANOHTTP_API_VERSION)/$(NANOHTTP_LIBRARY_NAME) +library_include_HEADERS = $(h_sources) + +INCLUDES = -I$(top_srcdir) + +# GENERIC_API_VERSION is 1.0 +lib_LTLIBRARIES= libnanohttp-1.0.la +libnanohttp_1_0_la_SOURCES= $(h_sources) $(cc_sources) +libnanohttp_1_0_la_LDFLAGS= -version-info $(NANOHTTP_LIBRARY_VERSION) -release $(NANOHTTP_RELEASE) + + + + + + + + + -- cgit v1.1-32-gdbae