Michael S. Tsirkin | 4e53f78 | 2010-11-29 19:16:37 +0200 | [diff] [blame] | 1 | all: test mod |
Rusty Russell | 1515c5c | 2013-03-20 13:50:24 +1030 | [diff] [blame] | 2 | test: virtio_test vringh_test |
Michael S. Tsirkin | 4e53f78 | 2010-11-29 19:16:37 +0200 | [diff] [blame] | 3 | virtio_test: virtio_ring.o virtio_test.o |
Rusty Russell | 1515c5c | 2013-03-20 13:50:24 +1030 | [diff] [blame] | 4 | vringh_test: vringh_test.o vringh.o virtio_ring.o |
| 5 | |
Michael S. Tsirkin | 1620ecb | 2014-12-14 23:26:54 +0200 | [diff] [blame] | 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 |
Rusty Russell | 1515c5c | 2013-03-20 13:50:24 +1030 | [diff] [blame] | 7 | vpath %.c ../../drivers/virtio ../../drivers/vhost |
Michael S. Tsirkin | 4e53f78 | 2010-11-29 19:16:37 +0200 | [diff] [blame] | 8 | mod: |
Michael S. Tsirkin | fd2e8d4 | 2015-09-09 22:26:25 +0300 | [diff] [blame] | 9 | ${MAKE} -C `pwd`/../.. M=`pwd`/vhost_test V=${V} |
Michael S. Tsirkin | 4e53f78 | 2010-11-29 19:16:37 +0200 | [diff] [blame] | 10 | .PHONY: all test mod clean |
| 11 | clean: |
Rusty Russell | 1515c5c | 2013-03-20 13:50:24 +1030 | [diff] [blame] | 12 | ${RM} *.o vringh_test virtio_test vhost_test/*.o vhost_test/.*.cmd \ |
Michael S. Tsirkin | 4e53f78 | 2010-11-29 19:16:37 +0200 | [diff] [blame] | 13 | vhost_test/Module.symvers vhost_test/modules.order *.d |
| 14 | -include *.d |