]> ruderich.org/simon Gitweb - safcm/safcm.git/blob - Makefile
First working version
[safcm/safcm.git] / Makefile
1 all: safcm
2
3 safcm:
4         go fmt ./...
5         cd cmd/safcm-remote && ./build.sh
6         go build -race ruderich.org/simon/safcm/cmd/safcm
7         @# For proper permissions after initial clone with a strict umask
8         cd cmd/safcm/testdata/project && ../../../../safcm fixperms 2> /dev/null
9
10 clean:
11         rm -rf remote/helpers/
12         rm -f safcm
13
14 .PHONY: all clean safcm