aboutsummaryrefslogtreecommitdiffstats
path: root/tools/vtpm/Rules.mk
blob: 548cff02a9f0c78c3fc30dcbc31df5d9c0518e06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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