mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 03:21:32 +00:00
5ac3e4b6d1
So tools/ has been growing three, at a different stage of their development export.h headers and so we should unite into one. Add tools/include/ to the include path of virtio and liblockdep to pick the shared header now. Signed-off-by: Borislav Petkov <bp@suse.de> Acked-by: Rusty Russell <rusty@rustcorp.com.au> Cc: Arnaldo Carvalho de Melo <acme@kernel.org> Cc: Ingo Molnar <mingo@redhat.com> Cc: Michael S. Tsirkin <mst@redhat.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Sasha Levin <sasha.levin@oracle.com> Cc: virtio-dev@lists.oasis-open.org Cc: virtualization@lists.linux-foundation.org Link: http://lkml.kernel.org/r/1397493185-19521-2-git-send-email-bp@alien8.de Signed-off-by: Jiri Olsa <jolsa@kernel.org>
15 lines
579 B
Makefile
15 lines
579 B
Makefile
all: test mod
|
|
test: virtio_test vringh_test
|
|
virtio_test: virtio_ring.o virtio_test.o
|
|
vringh_test: vringh_test.o vringh.o virtio_ring.o
|
|
|
|
CFLAGS += -g -O2 -Wall -I. -I../include/ -I ../../usr/include/ -Wno-pointer-sign -fno-strict-overflow -fno-strict-aliasing -fno-common -MMD -U_FORTIFY_SOURCE
|
|
vpath %.c ../../drivers/virtio ../../drivers/vhost
|
|
mod:
|
|
${MAKE} -C `pwd`/../.. M=`pwd`/vhost_test
|
|
.PHONY: all test mod clean
|
|
clean:
|
|
${RM} *.o vringh_test virtio_test vhost_test/*.o vhost_test/.*.cmd \
|
|
vhost_test/Module.symvers vhost_test/modules.order *.d
|
|
-include *.d
|