ia64/xen-unstable
view tools/tests/Makefile @ 7778:0b4596caf761
nloopbacks default is now 8. So vifnum of greater than 7 requires
an adjustment to nloopbacks. Warning comment updated.
Signed-off-by: Nivedita Singhvi (niv@us.ibm.com)
an adjustment to nloopbacks. Warning comment updated.
Signed-off-by: Nivedita Singhvi (niv@us.ibm.com)
author | kaf24@firebug.cl.cam.ac.uk |
---|---|
date | Fri Nov 11 10:46:36 2005 +0100 (2005-11-11) |
parents | a01199a95070 |
children | c259492dfb43 |
line source
2 XEN_ROOT=../..
3 include $(XEN_ROOT)/tools/Rules.mk
5 TARGET := test_x86_emulator
7 CC := gcc
8 CFLAGS := -O2 -Wall -Werror -D__TEST_HARNESS__
10 $(TARGET): x86_emulate.o test_x86_emulator.o
11 $(CC) -o $@ $^
13 clean:
14 rm -rf $(TARGET) *.o *~ core
16 install:
18 x86_emulate.o: $(XEN_ROOT)/xen/arch/x86/x86_emulate.c
19 $(CC) $(CFLAGS) -I$(XEN_ROOT)/xen/include -c -o $@ $<
21 %.o: %.c
22 $(CC) $(CFLAGS) -I$(XEN_ROOT)/xen/include -c -o $@ $<