diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2012-11-15 21:47:20 -0500 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2012-11-15 21:47:20 -0500 |
commit | eb203b01c9ee729e603289a63f881d9866f61ea6 (patch) | |
tree | f4210538531950ead86a55b24a0417a125897ebd /src/libudev/Makefile.am | |
parent | c47f33a498f9c824a48c23987b312b3176602f7f (diff) |
Final step of revamping the build system
The structure of the source tree is basically correct and this is
about as far as we can go without hacking at the C code.
Diffstat (limited to 'src/libudev/Makefile.am')
-rw-r--r-- | src/libudev/Makefile.am | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/src/libudev/Makefile.am b/src/libudev/Makefile.am index 57f22a6ec6..6db152466b 100644 --- a/src/libudev/Makefile.am +++ b/src/libudev/Makefile.am @@ -4,6 +4,9 @@ LIBUDEV_CURRENT=3 LIBUDEV_REVISION=0 LIBUDEV_AGE=2 +AM_CPPFLAGS = \ + -I $(top_srcdir)/src/shared + lib_LTLIBRARIES = \ libudev.la @@ -28,17 +31,6 @@ libudev_la_LDFLAGS = \ -version-info $(LIBUDEV_CURRENT):$(LIBUDEV_REVISION):$(LIBUDEV_AGE) \ -Wl,--version-script=libudev.sym -pkgconfiglibdir=$(libdir)/pkgconfig -pkgconfiglib_DATA = \ - libudev.pc - -EXTRA_DIST = \ - libudev.pc.in \ - libudev.sym - -CLEANFILES = \ - libudev.pc - noinst_LTLIBRARIES = \ libudev-private.la @@ -51,3 +43,13 @@ libudev_private_la_CFLAGS = \ $(AM_CFLAGS) \ -fvisibility=default +pkgconfiglibdir=$(libdir)/pkgconfig +pkgconfiglib_DATA = \ + libudev.pc + +EXTRA_DIST = \ + libudev.pc.in \ + libudev.sym + +CLEANFILES = \ + libudev.pc |