-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMakefile
More file actions
24 lines (18 loc) · 709 Bytes
/
Makefile
File metadata and controls
24 lines (18 loc) · 709 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
GBENCH=1.3.0
BOOST=1.83.0
ARCH := amd64
all: build
local: libs
./build.sh $(GBENCH) $(BOOST)
build: insights libs
./build.sh $(GBENCH) $(BOOST) $(ARCH)
docker tag cppinsights-container:$(ARCH) andreasfertig/cppinsights-container:$(ARCH)
libs:
wget -q -O - https://github.com/google/benchmark/archive/v$(GBENCH).tar.gz | tar xzf -
wget -q -O - https://archives.boost.io/release/$(BOOST)/source/boost_1_83_0.tar.gz | tar xzf -
insights: clean
wget -q https://github.com/andreasfertig/cppinsights/releases/download/continuous/insights-ubuntu-$(ARCH).tar.gz
tar -xzf insights-ubuntu-$(ARCH).tar.gz
mv insights insights-$(ARCH)
clean:
rm -f insights-ubuntu-$(ARCH).tar.gz* insights insights-$(ARCH)