forked from videolabs/libmicrodns
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
29 lines (20 loc) · 734 Bytes
/
Copy pathMakefile.am
File metadata and controls
29 lines (20 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
ACLOCAL_AMFLAGS = -I m4
AM_CPPFLAGS = -I. -I$(top_srcdir)/src -I$(top_srcdir)/compat -I$(top_builddir)/src
lib_LTLIBRARIES = libmicrodns.la
noinst_LTLIBRARIES = libcompat.la
libcompat_la_SOURCES = compat/compat.c compat/compat.h
libmicrodns_la_SOURCES = \
src/mdns.c \
src/microdns.h \
src/rr.c src/rr.h \
src/utils.h
libmicrodns_la_LDFLAGS = -no-undefined -export-symbols-regex '^(mdns|rr)_'
libmicrodns_la_LIBADD = libcompat.la $(LIBSOCKET)
EXTRA_PROGRAMS = test announce
test_SOURCES = examples/main.c
test_LDADD = libmicrodns.la
announce_SOURCES = examples/announce.c
announce_LDADD = libcompat.la libmicrodns.la
pkginclude_HEADERS = src/microdns.h src/rr.h
pkgconfig_DATA = src/microdns.pc
dist_doc_DATA = README.md