summaryrefslogtreecommitdiff
path: root/src/shared/Makefile.am
diff options
context:
space:
mode:
authorblueness <basile@opensource.dyc.edu>2014-08-06 06:36:03 -0400
committerblueness <basile@opensource.dyc.edu>2014-08-06 06:36:03 -0400
commitcb2823bc026644ae56c9d257591d28a4f3110f4b (patch)
tree28cdd75fec8c6c6a2cf69c9668add048c10370f8 /src/shared/Makefile.am
parent4b8733ffe9c0fe8e5a527186d323dab93e43fb37 (diff)
parentb1ac60946d1625e14029ea9b7fa3aa4c06e0795f (diff)
Merge pull request #96 from gentoo/refactor-shared
src/shared: refactor shared code
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