rules.mk 3.54 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
27
GEM5_VARIANT ?= fast
28

29
30
EXTERNAL_SIMS_DIR := $(d)

31
32
$(eval $(call subdir,simics))

Jialin Li's avatar
Jialin Li committed
33
34
35
36
external: $(d)gem5/ready $(d)qemu/ready $(d)ns-3/ready $(d)femu/ready $(d)bmv2/ready
.PHONY: external gem5-clean qemu-clean ns-3-clean femu-clean bmv2-clean


37
38

$(d)gem5:
39
	git clone https://github.com/simbricks/gem5.git $@
40
41

$(d)gem5/ready: $(d)gem5
42
43
44
45
46
	cd $< && \
		CCFLAGS_EXTRA="-I$(abspath $(lib_dir))" \
		LIBRARY_PATH="$(abspath $(lib_dir))" \
		scons build/X86/gem5.$(GEM5_VARIANT) \
		--ignore-style -j`nproc`
47
48
	touch $@

49
50
51
52
gem5-clean:
	-cd $(EXTERNAL_SIMS_DIR)gem5 && scons --clean build/X86/gem5.$(GEM5_VARIANT)
	rm -f $(EXTERNAL_SIMS_DIR)gem5/ready

53
54

$(d)qemu:
55
	git clone https://github.com/simbricks/qemu.git $@
56
57
58
59
60

$(d)qemu/ready: $(d)qemu
	+cd $< && ./configure \
	    --target-list=x86_64-softmmu \
	    --disable-werror \
61
	    --with-pkgversion=SimBricks \
62
	    --extra-cflags="-I$(abspath $(lib_dir))" \
63
64
	    --extra-ldflags="-L$(abspath $(lib_dir))" \
	    --enable-simbricks \
65
	    --enable-simbricks-pci && \
66
67
68
69
70
71
72
73
74
	  $(MAKE)
	touch $@

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

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

75
76
77
78
qemu-clean:
	-+cd $(EXTERNAL_SIMS_DIR)qemu && $(MAKE) clean
	rm -f $(EXTERNAL_SIMS_DIR)qemu/ready

79
80

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

83
$(d)ns-3/ready: $(d)ns-3 $(lib_netif)
Marvin Meiers's avatar
Marvin Meiers committed
84
	+cd $< && SIMBRICKS_PATH=$(abspath $(base_dir)) ./simbricks-build.sh configure
85
86
	touch $@

87
ns-3-clean:
Marvin Meiers's avatar
Marvin Meiers committed
88
	-cd $(EXTERNAL_SIMS_DIR)ns-3 && ./ns3 clean
89
90
	rm -f $(EXTERNAL_SIMS_DIR)ns-3/ready

Antoine Kaufmann's avatar
Antoine Kaufmann committed
91
$(d)femu:
92
	git clone https://github.com/simbricks/femu.git $@
Antoine Kaufmann's avatar
Antoine Kaufmann committed
93
94

$(d)femu/ready: $(d)femu $(lib_nicif)
95
96
97
	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
98
99
100
	    EXTRA_CPPFLAGS=-I$(abspath $(lib_dir))
	touch $@

101
102
103
104
femu-clean:
	-+cd $(EXTERNAL_SIMS_DIR)femu && $(MAKE) clean
	rm -f $(EXTERNAL_SIMS_DIR)femu/ready

Jialin Li's avatar
Jialin Li committed
105
106
107
108
109
110
111
112
113
114
115
116
117
$(d)bmv2:
	git clone https://github.com/simbricks/bmv2.git $@

$(d)bmv2/ready: $(d)bmv2 $(lib_netif)
	+cd $< && ./autogen.sh && \
	CPPFLAGS=-I$(abspath $(lib_dir)) ./configure && \
	$(MAKE) -j
	touch $@

bmv2-clean:
	-cd $(EXTERNAL_SIMS_DIR)bmv2 && $(MAKE) clean
	rm -f $(EXTERNAL_SIMS_DIR)bmv2/ready

118
DISTCLEAN := $(d)gem5 $(d)qemu $(d)ns-3 $(d)femu
Jialin Li's avatar
Jialin Li committed
119
EXTERNAL_CLEAN_TASKS := gem5-clean qemu-clean ns-3-clean femu-clean bmv2-clean
120
include mk/subdir_post.mk