]>
Commit | Line | Data |
---|---|---|
4e53f78e | 1 | all: test mod |
1515c5ce | 2 | test: virtio_test vringh_test |
4e53f78e | 3 | virtio_test: virtio_ring.o virtio_test.o |
1515c5ce RR |
4 | vringh_test: vringh_test.o vringh.o virtio_ring.o |
5 | ||
1620ecb8 | 6 | 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 |
1515c5ce | 7 | vpath %.c ../../drivers/virtio ../../drivers/vhost |
4e53f78e | 8 | mod: |
fd2e8d43 | 9 | ${MAKE} -C `pwd`/../.. M=`pwd`/vhost_test V=${V} |
4e53f78e MT |
10 | .PHONY: all test mod clean |
11 | clean: | |
1515c5ce | 12 | ${RM} *.o vringh_test virtio_test vhost_test/*.o vhost_test/.*.cmd \ |
4e53f78e MT |
13 | vhost_test/Module.symvers vhost_test/modules.order *.d |
14 | -include *.d |