summaryrefslogtreecommitdiff
path: root/src/mtd_probe/Makefile.am
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2012-11-17 16:22:12 -0500
committerAnthony G. Basile <blueness@gentoo.org>2012-11-17 16:22:12 -0500
commit7730dfb5e1fc7e2f8b1df0eb9ef62c451a5f725f (patch)
tree1f96b7f42e8326d11be9a11f12c98ee4a30cfc70 /src/mtd_probe/Makefile.am
parentb0dd066bccc9bfabc3df290debc1d55dfb9596e5 (diff)
Restructure src/ as per lu_zero
Diffstat (limited to 'src/mtd_probe/Makefile.am')
-rw-r--r--src/mtd_probe/Makefile.am22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/mtd_probe/Makefile.am b/src/mtd_probe/Makefile.am
new file mode 100644
index 0000000000..dc87d37fe3
--- /dev/null
+++ b/src/mtd_probe/Makefile.am
@@ -0,0 +1,22 @@
+ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
+
+rootprefix=@rootprefix@
+udevlibexecdir=$(rootprefix)/lib/udev
+
+AM_CPPFLAGS = \
+ -include $(top_builddir)/config.h \
+ -DROOTPREFIX=\"$(rootprefix)\" \
+ -DUDEVLIBEXECDIR=\"$(udevlibexecdir)\" \
+ -I $(top_srcdir)/src/libudev \
+ -I $(top_srcdir)/src/udev
+
+udevlibexec_PROGRAMS = \
+ mtd_probe
+
+mtd_probe_SOURCES = \
+ mtd_probe.c \
+ mtd_probe.h \
+ probe_smartmedia.c
+
+mtd_probe_CPPFLAGS = \
+ $(AM_CPPFLAGS)