1ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} 2 3AM_CPPFLAGS = \ 4 -DUDEV_ROOT_RUN=\"$(rootrundir)\" \ 5 -include $(top_builddir)/config.h 6 7libudev_shared_la_SOURCES=\ 8 conf-files.c \ 9 device-nodes.c \ 10 dev-setup.c \ 11 fileio.c \ 12 hashmap.c \ 13 label.c \ 14 log.c \ 15 mempool.c \ 16 mkdir.c \ 17 mkdir-label.c \ 18 MurmurHash2.c \ 19 path-util.c \ 20 process-util.c \ 21 random-util.c \ 22 selinux-util.c \ 23 siphash24.c \ 24 smack-util.c \ 25 strbuf.c \ 26 strv.c \ 27 strxcpyx.c \ 28 sysctl-util.c \ 29 terminal-util.c \ 30 time-util.c \ 31 util.c \ 32 utf8.c \ 33 virt.c 34 35noinst_HEADERS = \ 36 conf-files.h \ 37 def.h \ 38 device-nodes.h \ 39 dev-setup.h \ 40 fileio.h \ 41 formats-util.h \ 42 hashmap.h \ 43 ioprio.h \ 44 label.h \ 45 list.h \ 46 log.h \ 47 macro.h \ 48 mempool.h \ 49 missing.h \ 50 mkdir.h \ 51 MurmurHash2.h \ 52 path-util.h \ 53 process-util.h \ 54 random-util.h \ 55 selinux-util.h \ 56 set.h \ 57 siphash24.h \ 58 smack-util.h \ 59 socket-util.h \ 60 sparse-endian.h \ 61 strbuf.h \ 62 strv.h \ 63 strxcpyx.h \ 64 sysctl-util.h \ 65 terminal-util.h \ 66 time-util.h \ 67 util.h \ 68 utf8.h \ 69 udev-util.h \ 70 virt.h 71 72libudev_shared_la_LDFLAGS = \ 73 $(AM_LDFLAGS) 74 75noinst_LTLIBRARIES = \ 76 libudev_shared.la 77