From cce4dd8af1ceec9ad9c1097ee584af87e4033a2a Mon Sep 17 00:00:00 2001 From: xengineering Date: Thu, 10 Jun 2021 11:10:57 +0200 Subject: Implement basic Structure and Buildsystem --- src/Makefile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/Makefile (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 0000000..02e9e39 --- /dev/null +++ b/src/Makefile @@ -0,0 +1,24 @@ +# vim: shiftwidth=4 tabstop=4 noexpandtab + +DESTDIR="" # leave empty for the current system or provide a fakeroot here +PREFIX="/usr" + +.PHONY: all clean install + +all: + # some recommended options for Go building (https://wiki.archlinux.org/title/Go_package_guidelines) + export CGO_CPPFLAGS="${CPPFLAGS}" + export CGO_CFLAGS="${CFLAGS}" + export CGO_CXXFLAGS="${CXXFLAGS}" + export CGO_LDFLAGS="${LDFLAGS}" + export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw" + + mkdir -p build + go build -o build/birdscan ./... + +clean: + rm -rf build + +install: all + install -Dm 755 build/birdscan $(DESTDIR)$(PREFIX)/bin/birdscan + -- cgit v1.2.3-70-g09d2