btrfs-progs: move ioctl-test.c to tests/

Move it out of the top-level directory.

Signed-off-by: David Sterba <dsterba@suse.com>
David Sterba 2020-03-04 20:50:14 +01:00
parent b147ef8764
commit 49fe198218
2 changed files with 3 additions and 3 deletions

View File

@ -594,15 +594,15 @@ quick-test: quick-test.o $(objects) $(libs)
@echo " [LD] $@"
$(Q)$(CC) -o $@ $^ $(LDFLAGS) $(LIBS)
ioctl-test.o: ioctl-test.c ioctl.h kerncompat.h ctree.h
ioctl-test.o: tests/ioctl-test.c ioctl.h kerncompat.h ctree.h
@echo " [CC] $@"
$(Q)$(CC) $(CFLAGS) -c $< -o $@
ioctl-test-32.o: ioctl-test.c ioctl.h kerncompat.h ctree.h
ioctl-test-32.o: tests/ioctl-test.c ioctl.h kerncompat.h ctree.h
@echo " [CC32] $@"
$(Q)$(CC) $(CFLAGS) -m32 -c $< -o $@
ioctl-test-64.o: ioctl-test.c ioctl.h kerncompat.h ctree.h
ioctl-test-64.o: tests/ioctl-test.c ioctl.h kerncompat.h ctree.h
@echo " [CC64] $@"
$(Q)$(CC) $(CFLAGS) -m64 -c $< -o $@