mirror of
https://github.com/Ne0nd0g/merlin
synced 2026-06-08 11:59:20 +00:00
51 lines
2.0 KiB
Makefile
51 lines
2.0 KiB
Makefile
# Merlin version
|
|
VERSION=$(shell cat pkg/merlin.go |grep "const Version ="|cut -d"\"" -f2)
|
|
BUILD=$(shell git rev-parse HEAD)
|
|
|
|
# Output File Location
|
|
DIR=data/temp/v${VERSION}/${BUILD}
|
|
$(shell mkdir -p ${DIR})
|
|
|
|
# Go build flags
|
|
LDFLAGS=-ldflags '-X github.com/Ne0nd0g/merlin/v2/pkg.Build=${BUILD} -buildid='
|
|
|
|
# Misc
|
|
# The Merlin server and agent MUST be built with the same seed value
|
|
# Set during build with "make linux-garble SEED=<insert seed>
|
|
SEED=d0d03a0ae4722535a0e1d5d0c8385ce42015511e68d960fadef4b4eaf5942feb
|
|
|
|
default:
|
|
go build ${LDFLAGS} -o ${DIR}/${MSERVER} main.go
|
|
|
|
# Compile Server - Windows x64
|
|
windows:
|
|
export GOOS=windows && export GOARCH=amd64 && go build ${LDFLAGS} -o ${DIR}/merlinServer-Windows-x64.exe main.go
|
|
|
|
# The SEED must be the exact same that was used when compiling the agent
|
|
# Garble version 0.5.2 or later must be installed and accessible in the PATH environment variable
|
|
windows-garble:
|
|
export GOOS=windows GOARCH=amd64 &&garble -tiny -literals -seed ${SEED} build ${LDFLAGS} -o ${DIR}/merlinServer-Windows-x64.exe main.go
|
|
|
|
# Compile Server - Linux x64
|
|
linux:
|
|
export GOOS=linux && export GOARCH=amd64 && go build ${LDFLAGS} -o ${DIR}/merlinServer-Linux-x64 main.go
|
|
|
|
# The SEED must be the exact same that was used when compiling the agent
|
|
# Garble version 0.5.2 or later must be installed and accessible in the PATH environment variable
|
|
linux-garble:
|
|
export GOOS=linux GOARCH=amd64 && garble -tiny -literals -seed ${SEED} build ${LDFLAGS} -o ${DIR}/merlinServer-Linux-x64 main.go
|
|
|
|
# Compile Server - Darwin x64
|
|
darwin:
|
|
export GOOS=darwin && export GOARCH=amd64 && go build ${LDFLAGS} -o ${DIR}/merlinServer-Darwin-x64 main.go
|
|
|
|
# The SEED must be the exact same that was used when compiling the agent
|
|
# Garble version 0.5.2 or later must be installed and accessible in the PATH environment variable
|
|
darwin-garble:
|
|
export GOOS=darwin GOARCH=amd64 && garble -tiny -literals -seed ${SEED} build ${LDFLAGS} -o ${DIR}/merlinServer-Darwin-x64.exe main.go
|
|
|
|
distro: windows linux darwin
|
|
|
|
clean:
|
|
rm -rf ${DIR}*
|