mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00

Move dnotify_test.c, Makefile, and .gitignore from Documentation/filesystems to selftests/filesystems. Remove filesystems build target from Documentation/Makefile and update selftests/filesystems/Makefile to work under selftests. dnotify_test will not be run as part of selftests suite and will not be included in install targets. It can be built separately for now. Acked-by: Jonathan Corbet <corbet@lwn.net> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
7 lines
95 B
Makefile
7 lines
95 B
Makefile
TEST_PROGS := dnotify_test
|
|
all: $(TEST_PROGS)
|
|
|
|
include ../lib.mk
|
|
|
|
clean:
|
|
rm -fr $(TEST_PROGS)
|