# Base definitions and rules (XEN_ROOT must be defined in including Makefile) include $(XEN_ROOT)/tools/Rules.mk # # Tool definitions # # General compiler flags CFLAGS = -Werror -g3 # Generic project files HDRS = $(wildcard *.h) SRCS = $(wildcard *.c) OBJS = $(patsubst %.c,%.o,$(SRCS)) # Generic (non-header) dependencies $(SRCS): Makefile $(XEN_ROOT)/tools/Rules.mk $(XEN_ROOT)/tools/vtpm/Rules.mk $(OBJS): $(SRCS) -include $(DEPS) BUILD_EMULATOR = y # Make sure these are just rules .PHONY : all build install clean