2010-11-29 18:16:37 +01:00
|
|
|
all: test mod
|
2013-03-20 04:20:24 +01:00
|
|
|
test: virtio_test vringh_test
|
2010-11-29 18:16:37 +01:00
|
|
|
virtio_test: virtio_ring.o virtio_test.o
|
2013-03-20 04:20:24 +01:00
|
|
|
vringh_test: vringh_test.o vringh.o virtio_ring.o
|
|
|
|
|
2014-12-14 22:26:54 +01:00
|
|
|
CFLAGS += -g -O2 -Werror -Wall -I. -I../include/ -I ../../usr/include/ -Wno-pointer-sign -fno-strict-overflow -fno-strict-aliasing -fno-common -MMD -U_FORTIFY_SOURCE
|
2013-03-20 04:20:24 +01:00
|
|
|
vpath %.c ../../drivers/virtio ../../drivers/vhost
|
2010-11-29 18:16:37 +01:00
|
|
|
mod:
|
|
|
|
${MAKE} -C `pwd`/../.. M=`pwd`/vhost_test
|
|
|
|
.PHONY: all test mod clean
|
|
|
|
clean:
|
2013-03-20 04:20:24 +01:00
|
|
|
${RM} *.o vringh_test virtio_test vhost_test/*.o vhost_test/.*.cmd \
|
2010-11-29 18:16:37 +01:00
|
|
|
vhost_test/Module.symvers vhost_test/modules.order *.d
|
|
|
|
-include *.d
|