X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=avahi-core%2FMakefile.am;h=afc958cabc798b33e2d04368f8b2dc0bf9165edb;hb=259ef1fd00e7e415dfb11bf26747355e5cd851f7;hp=31268e8b96b6479dd0ed30551d54d62c3402e5d4;hpb=c58379bde376cb2298fca14f83a86626f1b76f2f;p=catta diff --git a/avahi-core/Makefile.am b/avahi-core/Makefile.am index 31268e8..afc958c 100644 --- a/avahi-core/Makefile.am +++ b/avahi-core/Makefile.am @@ -26,15 +26,27 @@ AM_LDADD=$(GLIB20_LIBS) # This cool debug trap works on i386/gcc only AM_CFLAGS+='-DDEBUG_TRAP=__asm__("int $$3")' +avahiincludedir=$(includedir)/avahi-core + +avahiinclude_HEADERS = \ + rr.h \ + address.h \ + strlst.h \ + core.h \ + alternative.h + lib_LTLIBRARIES = \ - libavahi-core.la + libavahi-core.la noinst_PROGRAMS = \ dns-test \ domain-test \ prioq-test \ strlst-test \ - avahi-test + avahi-test \ + alternative-test \ + conformance-test \ + avahi-reflector libavahi_core_la_SOURCES = \ timeeventq.c timeeventq.h\ @@ -48,10 +60,20 @@ libavahi_core_la_SOURCES = \ rr.c rr.h \ dns.c dns.h \ socket.c socket.h \ - psched.c psched.h \ + response-sched.c response-sched.h \ + query-sched.c query-sched.h \ + probe-sched.c probe-sched.h \ announce.c announce.h \ - subscribe.c subscribe.h \ - strlst.c strlst.h + browse.c browse.h \ + strlst.c strlst.h \ + rrlist.c rrlist.h \ + alternative.c alternative.h \ + resolve-host-name.c \ + resolve-address.c \ + browse-domain.c \ + browse-service-type.c \ + browse-service.c \ + resolve-service.c prioq_test_SOURCES = \ prioq-test.c \ @@ -81,8 +103,31 @@ dns_test_CFLAGS = $(AM_CFLAGS) dns_test_LDADD = $(AM_LDADD) avahi_test_SOURCES = \ - avahi-test.c + avahi-test.c \ + $(libavahi_core_la_SOURCES) avahi_test_CFLAGS = $(AM_CFLAGS) -avahi_test_LDADD = $(AM_LDADD) libavahi-core.la +avahi_test_LDADD = $(AM_LDADD) + +alternative_test_SOURCES = \ + alternative-test.c \ + alternative.c alternative.h +alternative_test_CFLAGS = $(AM_CFLAGS) +alternative_test_LDADD = $(AM_LDADD) + +conformance_test_SOURCES = \ + conformance-test.c \ + $(libavahi_core_la_SOURCES) +conformance_test_CFLAGS = $(AM_CFLAGS) +conformance_test_LDADD = $(AM_LDADD) + +avahi_reflector_SOURCES = \ + avahi-reflector.c \ + $(libavahi_core_la_SOURCES) +avahi_reflector_CFLAGS = $(AM_CFLAGS) +avahi_reflector_LDADD = $(AM_LDADD) +valgrind: avahi-test + libtool --mode=execute valgrind ./avahi-test +gdb: avahi-test + libtool --mode=execute gdb ./avahi-test