rules.mk 2.57 KB
Newer Older
Antoine Kaufmann's avatar
Antoine Kaufmann committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2021 Max Planck Institute for Software Systems, and
# National University of Singapore
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

23
24
25
26
include mk/subdir_pre.mk

QEMU_IMG := $(d)qemu/build/qemu-img
QEMU := $(d)qemu/build/qemu-system-x86_64
Hejing Li's avatar
Hejing Li committed
27
GEM5_VARIANT := fast
28

Antoine Kaufmann's avatar
Antoine Kaufmann committed
29
external: $(d)gem5/ready $(d)qemu/ready $(d)ns-3/ready $(d)femu/ready
30
31
32
.PHONY: external

$(d)gem5:
33
	git clone https://github.com/simbricks/gem5.git $@
34
35

$(d)gem5/ready: $(d)gem5
36
37
38
	+cd $< && scons build/X86/gem5.$(GEM5_VARIANT) \
		CCFLAGS="-I$(abspath $(lib_dir))" \
		LIBPATH="$(abspath $(lib_dir))" \
39
	    -j`nproc`
40
41
42
43
	touch $@


$(d)qemu:
44
	git clone https://github.com/simbricks/qemu.git $@
45
46
47
48
49

$(d)qemu/ready: $(d)qemu
	+cd $< && ./configure \
	    --target-list=x86_64-softmmu \
	    --disable-werror \
50
	    --extra-cflags="-I$(abspath $(lib_dir))" \
51
52
	    --extra-ldflags="-L$(abspath $(lib_dir))" \
	    --enable-simbricks \
53
	    --enable-simbricks-pci && \
54
55
56
57
58
59
60
61
62
63
64
	  $(MAKE)
	touch $@

$(QEMUG_IMG): $(d)qemu/ready
	touch $@

$(QEMU): $(d)qemu/ready
	touch $@


$(d)ns-3:
65
	git clone https://github.com/simbricks/ns-3.git $@
66

67
$(d)ns-3/ready: $(d)ns-3 $(lib_netif)
68
69
70
	+cd $< && COSIM_PATH=$(abspath $(base_dir)) ./cosim-build.sh configure
	touch $@

Antoine Kaufmann's avatar
Antoine Kaufmann committed
71
$(d)femu:
72
	git clone https://github.com/simbricks/femu.git $@
Antoine Kaufmann's avatar
Antoine Kaufmann committed
73
74

$(d)femu/ready: $(d)femu $(lib_nicif)
Hejing Li's avatar
Hejing Li committed
75
	cd $< && make EXTRA_LDFLAGS="-L$(abspath $(lib_dir))/simbricks/nicif/ -L$(abspath $(lib_dir))/simbricks/pcie/ -L$(abspath $(lib_dir))/simbricks/base/ "\
Antoine Kaufmann's avatar
Antoine Kaufmann committed
76
77
78
79
	    EXTRA_CPPFLAGS=-I$(abspath $(lib_dir))
	touch $@

DISTCLEAN := $(base_dir)gem5 $(base_dir)qemu $(base_dir)ns-3 $(base_dir)femu
80
include mk/subdir_post.mk