This repository was archived by the owner on Nov 22, 2023. It is now read-only.
forked from kevidryon2/Tiger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
50 lines (44 loc) · 1.51 KB
/
Makefile
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Tiger, a web server built for being really fast and powerful.
# Copyright (C) 2023 kevidryon2
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
dynamic: clean x86-arch-dynamic
all: clean x86-arch
arm-dynamic: clean arm-arch-dynamic
arm: clean arm-arch
arm64-dynamic: clean aarch64-dynamic
arm64: clean aarch64
riscv-dynamic: clean riscv-arch-dynamic
riscv: clean riscv-arch
everything-static: x86-arch arm-arch aarch64 riscv-arch
everything-dynamic: x86-arch-dynamic arm-arch-dynamic aarch64-dynamic riscv-arch-dynamic
everything: everything-static everything-dynamic
clean:
rm -f build/*
x86-arch:
make -f Makefile.x86
x86-arch-dynamic:
make -f Makefile.x86 dynamic
arm-arch:
make -f Makefile.arm
arm-arch-dynamic:
make -f Makefile.arm dynamic
aarch64:
make -f Makefile.aarch64
aarch64-dynamic:
make -f Makefile.aarch64 dynamic
riscv-arch:
make -f Makefile.riscv
riscv-arch-dynamic:
make -f Makefile.riscv dynamic