]> rtime.felk.cvut.cz Git - jailhouse.git/blob - inmates/demos/arm/Makefile
inmates: arm: Fix and improve build
[jailhouse.git] / inmates / demos / arm / Makefile
1 #
2 # Jailhouse, a Linux-based partitioning hypervisor
3 #
4 # Copyright (c) ARM Limited, 2014
5 #
6 # Authors:
7 #  Jean-Philippe Brucker <jean-philippe.brucker@arm.com>
8 #
9 # This work is licensed under the terms of the GNU GPL, version 2.  See
10 # the COPYING file in the top-level directory.
11 #
12
13 include $(INMATES_LIB)/Makefile.lib
14
15 LIBDIR := ../../lib/arm
16
17 INMATES := gic-demo.bin uart-demo.bin
18
19 gic-demo-y := gic-demo.o \
20         $(addprefix $(LIBDIR)/,header.o printk.o gic.o $(DRIVERS))
21
22 uart-demo-y := uart-demo.o \
23         $(addprefix $(LIBDIR)/,header.o printk.o $(DRIVERS))
24
25 $(eval $(call DECLARE_TARGETS,$(INMATES)))