https://github.com/torvalds/linux
Raw File
Tip revision: 6b16351acbd415e66ba16bf7d473ece1574cf0bc authored by Linus Torvalds on 24 June 2012, 19:53:04 UTC
Linux 3.5-rc4
Tip revision: 6b16351
Makefile
all: test mod
test: virtio_test
virtio_test: virtio_ring.o virtio_test.o
CFLAGS += -g -O2 -Wall -I. -I ../../usr/include/ -Wno-pointer-sign -fno-strict-overflow  -MMD
vpath %.c ../../drivers/virtio
mod:
	${MAKE} -C `pwd`/../.. M=`pwd`/vhost_test
.PHONY: all test mod clean
clean:
	${RM} *.o vhost_test/*.o vhost_test/.*.cmd \
              vhost_test/Module.symvers vhost_test/modules.order *.d
-include *.d
back to top