ia64/xen-unstable
view tools/tests/Makefile @ 4312:a01199a95070
bitkeeper revision 1.1264 (4243449d-JwBVsSinjAWdYveMNhEjQ)
Initial attempt at merging shadow code with head of unstable tree.
Signed-off-by: michael.fetterman@cl.cam.ac.uk
Initial attempt at merging shadow code with head of unstable tree.
Signed-off-by: michael.fetterman@cl.cam.ac.uk
author | mafetter@fleming.research |
---|---|
date | Thu Mar 24 22:52:13 2005 +0000 (2005-03-24) |
parents | a13b9052d91d |
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 $@ $<