diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2012-11-17 16:22:12 -0500 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2012-11-17 16:22:12 -0500 |
commit | 7730dfb5e1fc7e2f8b1df0eb9ef62c451a5f725f (patch) | |
tree | 1f96b7f42e8326d11be9a11f12c98ee4a30cfc70 /src/udev/Makefile.am | |
parent | b0dd066bccc9bfabc3df290debc1d55dfb9596e5 (diff) |
Restructure src/ as per lu_zero
Diffstat (limited to 'src/udev/Makefile.am')
-rw-r--r-- | src/udev/Makefile.am | 50 |
1 files changed, 29 insertions, 21 deletions
diff --git a/src/udev/Makefile.am b/src/udev/Makefile.am index 0607bea2e6..0052c75234 100644 --- a/src/udev/Makefile.am +++ b/src/udev/Makefile.am @@ -9,8 +9,7 @@ AM_CPPFLAGS = \ -DROOTPREFIX=\"$(rootprefix)\" \ -DUDEVLIBEXECDIR=\"$(udevlibexecdir)\" \ -I $(top_srcdir)/src/libudev \ - -I $(top_srcdir)/src/udev \ - -I $(top_srcdir)/src/include + -I $(top_srcdir)/src/udev sbin_PROGRAMS = \ udevd \ @@ -71,6 +70,34 @@ libudev_core_la_SOURCES = \ strv.c \ util.c +noinst_HEADERS = \ + acl-util.h \ + cgroup-util.h \ + conf-files.h \ + def.h \ + dev-setup.h \ + exit-status.h \ + hashmap.h \ + ioprio.h \ + label.h \ + log.h \ + logind-acl.h \ + macro.h \ + missing.h \ + mkdir.h \ + path-util.h \ + sd-daemon.h \ + sd-login.h \ + set.h \ + socket-util.h \ + sparse-endian.h \ + strbuf.h \ + strv.h \ + util.h + +include_HEADERS = \ + udev.h + libudev_core_la_CFLAGS = \ $(AM_CFLAGS) @@ -106,22 +133,3 @@ EXTRA_DIST = \ CLEANFILES = \ udev.pc - -# ------------------------------------------------------------------------------ -# Helper programs below -# - -SUBDIR = \ - accelerometer \ - ata_id \ - cdrom_id \ - collect \ - mtd_probe \ - scsi_id \ - v4l_id - -if ENABLE_KEYMAP -SUBDIR += \ - keymap -endif - |