summaryrefslogtreecommitdiff
path: root/src/shared/Makefile.am
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2014-08-05 19:22:24 -0400
committerAnthony G. Basile <blueness@gentoo.org>2014-08-05 19:22:24 -0400
commitb1ac60946d1625e14029ea9b7fa3aa4c06e0795f (patch)
tree28cdd75fec8c6c6a2cf69c9668add048c10370f8 /src/shared/Makefile.am
parent4b8733ffe9c0fe8e5a527186d323dab93e43fb37 (diff)
src/shared: refactor shared code
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/shared/Makefile.am')
-rw-r--r--src/shared/Makefile.am63
1 files changed, 63 insertions, 0 deletions
diff --git a/src/shared/Makefile.am b/src/shared/Makefile.am
new file mode 100644
index 0000000000..b4c2000301
--- /dev/null
+++ b/src/shared/Makefile.am
@@ -0,0 +1,63 @@
+ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
+
+AM_CPPFLAGS = \
+ -include $(top_builddir)/config.h
+
+libudev_shared_la_SOURCES=\
+ cgroup-util.c \
+ conf-files.c \
+ device-nodes.c \
+ exit-status.c \
+ fileio.c \
+ hashmap.c \
+ log.c \
+ MurmurHash2.c \
+ path-util.c \
+ set.c \
+ siphash24.c \
+ strbuf.c \
+ strv.c \
+ strxcpyx.c \
+ time-util.c \
+ util.c \
+ utf8.c \
+ dev-setup.c \
+ label.c \
+ mkdir.c \
+ smack-util.c
+
+noinst_HEADERS = \
+ cgroup-util.h \
+ conf-files.h \
+ def.h \
+ device-nodes.h \
+ exit-status.h \
+ fileio.h \
+ hashmap.h \
+ ioprio.h \
+ log.h \
+ macro.h \
+ missing.h \
+ MurmurHash2.h \
+ path-util.h \
+ set.h \
+ siphash24.h \
+ socket-util.h \
+ sparse-endian.h \
+ strbuf.h \
+ strv.h \
+ strxcpyx.h \
+ time-util.h \
+ util.h \
+ utf8.h \
+ dev-setup.h \
+ label.h \
+ mkdir.h \
+ smack-util.h \
+ udev-util.h
+
+libudev_shared_la_LDFLAGS = \
+ $(AM_LDFLAGS)
+
+noinst_LTLIBRARIES = \
+ libudev_shared.la