Terarea  2
The automation project
Loading...
Searching...
No Matches
Makefile
Go to the documentation of this file.
1##
2## EPITECH PROJECT, 2024
3## terarea
4## File description:
5## Makefile
6##
7
8SUDO=
9
10up:
11 $(SUDO) docker compose up
12
13sudo:
14 $(eval SUDO=sudo)
15
16down:
17 $(SUDO) docker compose down
18
19build:
20 $(SUDO) docker compose build
21
22re: down build all
23
24.PHONY: all sudo down build re