diff options
Diffstat (limited to 'test/Makefile.am')
-rw-r--r-- | test/Makefile.am | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index a9c28c9316..f12ee20f04 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -9,7 +9,8 @@ AM_CPPFLAGS = \ noinst_PROGRAMS = \ test-libudev \ test-udev \ - test_utf8 + test-utf8 \ + test-device_nodes test_libudev_SOURCES = \ test-libudev.c @@ -40,6 +41,15 @@ test_utf8_CFLAGS = \ test_utf8_LDADD = \ $(top_builddir)/src/libudev/libudev-private.la +test_device_nodes_SOURCES = \ + test-device-nodes.c + +test_device_nodes_CFLAGS = \ + $(AM_CFLAGS) + +test_device_nodes_LDADD = \ + $(top_builddir)/src/libudev/libudev-private.la + if HAVE_LIBKMOD test_udev_LDADD += $(KMOD_LIBS) endif |