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 | |
| 6 | CFLAGS += -g -O2 -Wall -I. -I ../../usr/include/ -Wno-pointer-sign -fno-strict-overflow -fno-strict-aliasing -fno-common -MMD -U_FORTIFY_SOURCE |
| 7 | vpath %.c ../../drivers/virtio ../../drivers/vhost |
Michael S. Tsirkin | 4e53f78 | 2010-11-29 19:16:37 +0200 | [diff] [blame] | 8 | mod: |
| 9 | ${MAKE} -C `pwd`/../.. M=`pwd`/vhost_test |
| 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 |