Beginnings of GSocket API, small fixes for InetAddress
[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         gnetworkinputstream.h \
22         gnetworkoutputstream.h \
23         $(NULL)
24
25 gioincludedir=$(includedir)/glib-2.0/gnio/
26 gioinclude_HEADERS =            \
27         $(gnio_headers)
28
29
30 libgnio_la_SOURCES =        \
31         ginetaddress.c      \
32         ginet4address.c     \
33         ginet6address.c     \
34         gresolver.c         \
35         gsocketaddress.c    \
36         ginetsocketaddress.c \
37         gsocket.c \
38         gnetworkinputstream.c \
39         gnetworkoutputstream.c \
40         $(NULL)
41
42