rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | # SPDX-License-Identifier: GPL-2.0 |
| 2 | all: test mod |
| 3 | test: virtio_test vringh_test |
| 4 | virtio_test: virtio_ring.o virtio_test.o |
| 5 | vringh_test: vringh_test.o vringh.o virtio_ring.o |
| 6 | |
| 7 | 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 |
| 8 | vpath %.c ../../drivers/virtio ../../drivers/vhost |
| 9 | mod: |
| 10 | ${MAKE} -C `pwd`/../.. M=`pwd`/vhost_test V=${V} |
| 11 | .PHONY: all test mod clean |
| 12 | clean: |
| 13 | ${RM} *.o vringh_test virtio_test vhost_test/*.o vhost_test/.*.cmd \ |
| 14 | vhost_test/Module.symvers vhost_test/modules.order *.d |
| 15 | -include *.d |