12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- PLATFORMS := darwin/amd64 darwin/arm64 freebsd/amd64 linux/386 linux/amd64 linux/arm linux/arm64 linux/mipsle windows/386 windows/amd64 windows/arm windows/arm64
- temp = $(subst /, ,$@)
- os = $(word 1, $(temp))
- arch = $(word 2, $(temp))
- all: web.tar.gz $(PLATFORMS) arozos_file_checksum.sha1
- binary: $(PLATFORMS)
- hash: arozos_file_checksum.sha1
- web: web.tar.gz
- clean:
- rm -f arozos_*_*
- rm -f web.tar.gz
- $(PLATFORMS):
- @echo "Building $(os)/$(arch)"
- GOROOT_FINAL=Git/ GOOS=$(os) GOARCH=$(arch) go build -o './automake/arozos_$(os)_$(arch)' -ldflags "-s -w" -trimpath
- web.tar.gz:
- -mkdir ./automake/
- @echo "Removing old build resources, if exists"
- -rm -rf ./automake/web/
- -rm -rf ./automake/system/
- -rm -rf ./automake/subservice/
- @echo "Moving subfolders to build folder"
- -cp -r ./web ./automake/web/
- # cp -r ./subservice ./automake/subservice/
- -cp -r ./system ./automake/system/
- @ echo "Remove sensitive information"
- -rm ./automake/system/dev.uuid
- -rm ./automake/system/ao.db
- -rm ./automake/system/smtp_conf.json
- -rm ./automake/system/storage.json
- # -mv ./automake/system/storage.json ./automake/system/storage.json.example
- -rm -rf ./automake/system/aecron/
- -rm ./automake/system/cron.json
- -rm ./automake/system/bridge.json
- -rm ./automake/system/auth/authlog.db
-
- @ echo "Remove modules that should not go into the build folder"
- -rm -rf "./automake/web/Cyinput"
- -rm -rf "./automake/web/Label Maker"
- -rm -rf "./automake/web/Dummy"
- @echo "Creating tarball for all required files"
- -rm web.tar.gz
- -cd ./automake/ && tar -czf ../web.tar.gz system/ web/
- @echo "Clean up the autobuild directory"
- rm -rf ./automake/
- arozos_file_checksum.sha1:
- @echo "Generating the checksum, if sha1sum installed"
- -sha1sum arozos_*_* web.tar.gz > arozos_file_checksum.sha1
|