Add TcpClient and TcpServer
[cascardo/gnio.git] / gnio / Makefile.am
1 NULL =
2
3 INCLUDES =                                      \
4         $(SAMBA_CFLAGS)                         \
5         -I$(top_srcdir)                         \
6         -I$(top_builddir)                       \
7         $(GLIB_CFLAGS)                          \
8         -DG_DISABLE_DEPRECATED
9
10 lib_LTLIBRARIES=libgnio.la
11
12
13 gnio_headers =  \
14         ginetaddress.h      \
15         ginet4address.h     \
16         ginet6address.h     \
17         gresolver.h         \
18         gsocketaddress.h    \
19         ginetsocketaddress.h \
20         gsocket.h \
21         gtcpserver.h \
22         gtcpclient.h \
23         gnetworkinputstream.h \
24         gnetworkoutputstream.h \
25         $(NULL)
26
27 gioincludedir=$(includedir)/glib-2.0/gnio/
28 gioinclude_HEADERS =            \
29         $(gnio_headers)
30
31
32 libgnio_la_SOURCES =        \
33         ginetaddress.c      \
34         ginet4address.c     \
35         ginet6address.c     \
36         gresolver.c         \
37         gsocketaddress.c    \
38         ginetsocketaddress.c \
39         gsocket.c \
40         gtcpserver.c \
41         gtcpclient.c \
42         gnetworkinputstream.c \
43         gnetworkoutputstream.c \
44         gasynchelper.c \
45         $(NULL)
46
47