mirror of
https://github.com/its-a-feature/Mythic
synced 2026-06-08 14:55:38 +00:00
f5890049fa
updating UI plaintext view to be more streamlined
17 lines
359 B
Makefile
17 lines
359 B
Makefile
.PHONY: default
|
|
default: linux ;
|
|
|
|
linux:
|
|
cd Mythic_CLI && make build_linux && mv mythic-cli ../
|
|
|
|
macos:
|
|
cd Mythic_CLI && make build_macos && mv mythic-cli ../
|
|
|
|
local:
|
|
cd Mythic_CLI && make build_local
|
|
|
|
linux_docker:
|
|
cd Mythic_CLI && make build_linux_docker && mv mythic-cli ../
|
|
|
|
macos_docker:
|
|
cd Mythic_CLI && make build_macos_docker && mv mythic-cli ../
|