aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xenbackendd/Makefile
blob: 4421f7d27e96d27568b3625d99c98b1ee9c8531f (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Copyright (c) 2009 Advanced Micro Devices, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; under version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

XEN_ROOT=../..
include $(XEN_ROOT)/tools/Rules.mk

CFLAGS  += -Werror
CFLAGS  += $(CFLAGS_libxenstore)
CPPFLAGS += -DXEN_SCRIPT_DIR="\"$(XEN_SCRIPT_DIR)\""
LDFLAGS += $(LDFLAGS_libxenstore)

SBIN = xenbackendd

.PHONY: all
all: build

.PHONY: build
build: $(SBIN)

.PHONY: install
install: build
	$(INSTALL_DIR) $(DESTDIR)$(SBINDIR)
	$(INSTALL_PROG) xenbackendd $(DESTDIR)$(SBINDIR)

.PHONY: clean
clean:
	rm -f $(SBIN) $(DEPS)


%: %.c Makefile
	$(CC) $(CFLAGS) $(CPPFLAGS) $< $(LDFLAGS) -o $@

-include $(DEPS)