debuggers.hg
annotate tools/vtpm/Rules.mk @ 22848:6341fe0f4e5a
Added tag 4.1.0-rc2 for changeset 9dca60d88c63
author | Keir Fraser <keir@xen.org> |
---|---|
date | Tue Jan 25 14:06:55 2011 +0000 (2011-01-25) |
parents | bd78714b8594 |
children |
rev | line source |
---|---|
shand@6595 | 1 # Base definitions and rules (XEN_ROOT must be defined in including Makefile) |
shand@6595 | 2 include $(XEN_ROOT)/tools/Rules.mk |
shand@6595 | 3 |
shand@6595 | 4 # |
shand@6595 | 5 # Tool definitions |
shand@6595 | 6 # |
shand@6595 | 7 |
shand@6595 | 8 # Xen tools installation directory |
shand@6595 | 9 TOOLS_INSTALL_DIR = $(DESTDIR)/usr/bin |
shand@6595 | 10 |
shand@6595 | 11 # General compiler flags |
kaf24@9226 | 12 CFLAGS = -Werror -g3 -I. |
shand@6595 | 13 |
shand@6595 | 14 # Generic project files |
shand@6595 | 15 HDRS = $(wildcard *.h) |
shand@6595 | 16 SRCS = $(wildcard *.c) |
shand@6595 | 17 OBJS = $(patsubst %.c,%.o,$(SRCS)) |
shand@6595 | 18 |
shand@6595 | 19 # Generic (non-header) dependencies |
shand@6595 | 20 $(SRCS): Makefile $(XEN_ROOT)/tools/Rules.mk $(XEN_ROOT)/tools/vtpm/Rules.mk |
shand@6595 | 21 |
shand@6595 | 22 $(OBJS): $(SRCS) |
shand@6595 | 23 |
keir@19063 | 24 -include $(DEPS) |
shand@6595 | 25 |
kaf24@10530 | 26 BUILD_EMULATOR = y |
kaf24@8608 | 27 |
shand@6595 | 28 # Make sure these are just rules |
shand@6595 | 29 .PHONY : all build install clean |