]> rtime.felk.cvut.cz Git - jailhouse.git/blob - inmates/demos/x86/Makefile
inmates: Build library archive and link it implicitly
[jailhouse.git] / inmates / demos / x86 / Makefile
1 #
2 # Jailhouse, a Linux-based partitioning hypervisor
3 #
4 # Copyright (c) Siemens AG, 2013, 2014
5 #
6 # Authors:
7 #  Jan Kiszka <jan.kiszka@siemens.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 INMATES := tiny-demo.bin apic-demo.bin ioapic-demo.bin 32-bit-demo.bin \
16         pci-demo.bin e1000-demo.bin ivshmem-demo.bin
17
18 tiny-demo-y     := tiny-demo.o
19 apic-demo-y     := apic-demo.o
20 ioapic-demo-y   := ioapic-demo.o
21 pci-demo-y      := pci-demo.o
22 e1000-demo-y    := e1000-demo.o
23 ivshmem-demo-y  := ivshmem-demo.o
24
25 $(eval $(call DECLARE_32_BIT,32-bit-demo))
26 32-bit-demo-y   := 32-bit-demo.o
27
28 $(eval $(call DECLARE_TARGETS,$(INMATES)))