diff options
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 00000000..5670792b --- /dev/null +++ b/src/Makefile.am | |||
@@ -0,0 +1,26 @@ | |||
1 | SUBDIRS = . | ||
2 | |||
3 | INCLUDES = -I$(top_srcdir)/src/include | ||
4 | |||
5 | lib_LTLIBRARIES = libwebserver_gnunet.la | ||
6 | |||
7 | AM_CFLAGS = \ | ||
8 | -D_SERVER_VERSION="\"0.6.3-GNUnet\"" | ||
9 | |||
10 | libwebserver_gnunet_la_SOURCES = \ | ||
11 | clientinfo.c \ | ||
12 | server.c \ | ||
13 | client.c \ | ||
14 | gethandler.c \ | ||
15 | socket.c \ | ||
16 | memory.c \ | ||
17 | outstream.c \ | ||
18 | weblog.c \ | ||
19 | utils.c \ | ||
20 | fnmatch.c \ | ||
21 | outgif.c \ | ||
22 | error.c | ||
23 | |||
24 | libwebserver_gnunet_la_LDFLAGS = \ | ||
25 | -version-info 0:0:0 | ||
26 | |||