]> git.meshlink.io Git - catta/blob - avahi-common/Makefile.am
cd21c11d78b8db83ea8cfe4d42090338f5b3b1de
[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         utf8-test
53 endif
54
55 lib_LTLIBRARIES = \
56         libavahi-common.la 
57
58 libavahi_common_la_SOURCES = \
59         malloc.c malloc.h \
60         address.c address.h \
61         alternative.c alternative.h \
62         error.c error.h \
63         strlst.c strlst.h \
64         domain.c domain.h \
65         timeval.c timeval.h \
66         simple-watch.c simple-watch.h \
67         thread-watch.c thread-watch.h \
68         watch.h gccmacro.h \
69         rlist.h rlist.c \
70         utf8.c utf8.h
71
72 libavahi_common_la_CFLAGS = $(AM_CFLAGS) $(PTHREAD_CFLAGS) 
73 libavahi_common_la_LIBADD = $(AM_LDADD) $(PTHREAD_CFLAGS) $(PTHREAD_LIBS)
74 libavahi_common_la_LDFLAGS = $(AM_LDFLAGS) -export-dynamic -version-info $(LIBAVAHI_COMMON_VERSION_INFO)
75
76 strlst_test_SOURCES = \
77         strlst.c strlst.h \
78         malloc.c malloc.h \
79         strlst-test.c
80 strlst_test_CFLAGS = $(AM_CFLAGS)
81
82 alternative_test_SOURCES = \
83         alternative.c alternative.h \
84         malloc.c malloc.h \
85         domain.c domain.h \
86         address.c address.h \
87         alternative-test.c \
88         utf8.c utf8.h
89 alternative_test_CFLAGS = $(AM_CFLAGS)
90
91 domain_test_SOURCES = \
92         domain.c domain.h \
93         malloc.c malloc.h \
94         address.c address.h \
95         domain-test.c \
96         utf8.c utf8.h
97 domain_test_CFLAGS = $(AM_CFLAGS)
98
99 watch_test_SOURCES = \
100         timeval.c timeval.h \
101         simple-watch.c simple-watch.h \
102         watch.h \
103         malloc.c malloc.h \
104         watch-test.c
105 watch_test_CFLAGS = $(AM_CFLAGS) $(PTHREAD_CFLAGS)
106 watch_test_LDADD = $(AM_LDADD) $(PTHREAD_LIBS) $(PTHREAD_CFLAGS)
107
108 watch_test_thread_SOURCES = $(watch_test_SOURCES) thread-watch.c thread-watch.h
109 watch_test_thread_CFLAGS = $(watch_test_CFLAGS) -DUSE_THREAD
110 watch_test_thread_LDADD = $(watch_test_LDADD)
111
112 timeval_test_SOURCES = \
113         timeval.c timeval.h \
114         timeval-test.c
115 timeval_test_CFLAGS = $(AM_CFLAGS) $(PTHREAD_CFLAGS)
116 timeval_test_LDADD = $(AM_LDADD) $(PTHREAD_LIBS) $(PTHREAD_CFLAGS)
117
118 utf8_test_SOURCES = \
119         utf8-test.c \
120         utf8.c utf8.h
121 utf8_test_CFLAGS = $(AM_CFLAGS)
122 utf8_test_LDADD = $(AM_LDADD)
123
124 if HAVE_DBUS
125
126 noinst_HEADERS = \
127         dbus.h \
128         dbus-watch-glue.h
129
130 endif
131