]> git.meshlink.io Git - catta/blob - avahi-common/Makefile.am
add new API function avahi_is_valid_fqdn()
[catta] / avahi-common / Makefile.am
1 # $Id: Makefile.am 90 2005-05-23 16:15:12Z lennart $
2 #
3 # This file is part of avahi.
4
5 # avahi is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU Lesser General Public License as
7 # published by the Free Software Foundation; either version 2 of the
8 # License, or (at your option) any later version.
9 #
10 # avahi is distributed in the hope that it will be useful, but WITHOUT
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
13 # License for more details.
14 #
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with avahi; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 # USA.
19
20 AM_CFLAGS=-I$(top_srcdir)
21
22 # This cool debug trap works on i386/gcc only
23 AM_CFLAGS+='-DDEBUG_TRAP=__asm__("int $$3")'
24
25 avahi_commonincludedir=$(includedir)/avahi-common
26
27 avahi_commoninclude_HEADERS = \
28         strlst.h \
29         address.h \
30         alternative.h \
31         domain.h \
32         cdecl.h \
33         defs.h \
34         malloc.h \
35         watch.h \
36         timeval.h \
37         simple-watch.h \
38         thread-watch.h \
39         gccmacro.h \
40         error.h \
41         llist.h \
42         rlist.h
43
44 if ENABLE_TESTS
45 noinst_PROGRAMS = \
46         strlst-test \
47         domain-test \
48         alternative-test \
49         timeval-test \
50         watch-test \
51         watch-test-thread
52 endif
53
54 lib_LTLIBRARIES = \
55         libavahi-common.la 
56
57 libavahi_common_la_SOURCES = \
58         malloc.c malloc.h \
59         address.c address.h \
60         alternative.c alternative.h \
61         error.c error.h \
62         strlst.c strlst.h \
63         domain.c domain.h \
64         timeval.c timeval.h \
65         simple-watch.c simple-watch.h \
66         thread-watch.c thread-watch.h \
67         watch.h gccmacro.h \
68         rlist.h rlist.c
69
70 libavahi_common_la_CFLAGS = $(AM_CFLAGS) $(PTHREAD_CFLAGS) 
71 libavahi_common_la_LIBADD = $(AM_LDADD) $(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
72 libavahi_common_la_LDFLAGS = $(AM_LDFLAGS) -export-dynamic -version-info $(LIBAVAHI_COMMON_VERSION_INFO)
73
74 strlst_test_SOURCES = \
75         strlst.c strlst.h \
76         malloc.c malloc.h \
77         strlst-test.c
78 strlst_test_CFLAGS = $(AM_CFLAGS)
79
80 alternative_test_SOURCES = \
81         alternative.c alternative.h \
82         malloc.c malloc.h \
83         domain.c domain.h \
84         address.c address.h \
85         alternative-test.c
86 alternative_test_CFLAGS = $(AM_CFLAGS)
87
88 domain_test_SOURCES = \
89         domain.c domain.h \
90         malloc.c malloc.h \
91         address.c address.h \
92         domain-test.c
93 domain_test_CFLAGS = $(AM_CFLAGS)
94
95 watch_test_SOURCES = \
96         timeval.c timeval.h \
97         simple-watch.c simple-watch.h \
98         watch.h \
99         malloc.c malloc.h \
100         watch-test.c
101 watch_test_CFLAGS = $(AM_CFLAGS) $(PTHREAD_CFLAGS)
102 watch_test_LDADD = $(AM_LDADD) $(PTHREAD_LIBS) $(PTHREAD_CFLAGS)
103
104 watch_test_thread_SOURCES = $(watch_test_SOURCES) thread-watch.c thread-watch.h
105 watch_test_thread_CFLAGS = $(watch_test_CFLAGS) -DUSE_THREAD
106 watch_test_thread_LDADD = $(watch_test_LDADD)
107
108 timeval_test_SOURCES = \
109         timeval.c timeval.h \
110         timeval-test.c
111 timeval_test_CFLAGS = $(AM_CFLAGS) $(PTHREAD_CFLAGS)
112 timeval_test_LDADD = $(AM_LDADD) $(PTHREAD_LIBS) $(PTHREAD_CFLAGS)
113
114 if HAVE_DBUS
115
116 noinst_HEADERS = \
117         dbus.h \
118         dbus-watch-glue.h
119
120 endif
121