~ubuntu-branches/ubuntu/utopic/xen/utopic

« back to all changes in this revision

Viewing changes to tools/vtpm/Rules.mk

  • Committer: Bazaar Package Importer
  • Author(s): Bastian Blank
  • Date: 2010-05-06 15:47:38 UTC
  • mto: (1.3.1) (15.1.1 sid) (4.1.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20100506154738-agoz0rlafrh1fnq7
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Base definitions and rules (XEN_ROOT must be defined in including Makefile)
 
2
include $(XEN_ROOT)/tools/Rules.mk
 
3
 
 
4
#
 
5
# Tool definitions
 
6
#
 
7
 
 
8
# Xen tools installation directory
 
9
TOOLS_INSTALL_DIR = $(DESTDIR)/usr/bin
 
10
 
 
11
# General compiler flags
 
12
CFLAGS   = -Werror -g3 -I.
 
13
 
 
14
# Generic project files
 
15
HDRS    = $(wildcard *.h)
 
16
SRCS    = $(wildcard *.c)
 
17
OBJS    = $(patsubst %.c,%.o,$(SRCS))
 
18
 
 
19
# Generic (non-header) dependencies
 
20
$(SRCS): Makefile $(XEN_ROOT)/tools/Rules.mk $(XEN_ROOT)/tools/vtpm/Rules.mk
 
21
 
 
22
$(OBJS): $(SRCS)
 
23
 
 
24
-include $(DEPS)
 
25
 
 
26
BUILD_EMULATOR = y
 
27
 
 
28
# Make sure these are just rules
 
29
.PHONY : all build install clean