forked from cart-pucminas/CAPBenchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
28 lines (23 loc) · 640 Bytes
/
Copy pathmakefile
File metadata and controls
28 lines (23 loc) · 640 Bytes
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
#
# Copyright(C) 2014 Pedro H. Penna <pedrohenriquepenna@gmail.com>
#
# Directories.
export BINDIR = $(CURDIR)/bin
# Builds all kernels for Intel x86.
all-x86:
mkdir -p bin
cd x86 && $(MAKE) all BINDIR=$(BINDIR)
# Builds all kernels for MPPA-256.
all-mppa256:
mkdir -p bin
cd mppa256 && $(MAKE) all BINDIR=$(BINDIR)
# Builds all kernels for Gem5 Simulator
# IMPORTANT: Must use a compatible Kernel
all-gem5:
mkdir -p bin
cd gem5 && $(MAKE) all BINDIR=$(BINDIR)
# Cleans compilation files.
clean:
cd x86 && $(MAKE) clean BINDIR=$(BINDIR)
cd mppa256 && $(MAKE) clean BINDIR=$(BINDIR)
cd gem5 && $(MAKE) clean BINDIR=$(BINDIR)