libgocryptfs/Makefile

26 lines
630 B
Makefile
Raw Normal View History

.phony: build
build:
./build.bash
2019-03-17 22:28:25 +01:00
./Documentation/MANPAGE-render.bash
.phony: test
test:
./test.bash
.phony: root_test
root_test:
./build.bash
2019-05-01 18:31:54 +02:00
cd tests/root_test ; go test -c ; sudo ./root_test.test -test.v
.phony: format
format:
go fmt ./...
2019-03-17 22:28:25 +01:00
.phony: install
install:
install -Dm755 -t "$(DESTDIR)/usr/bin/" gocryptfs
install -Dm755 -t "$(DESTDIR)/usr/bin/" gocryptfs-xray/gocryptfs-xray
install -Dm644 -t "$(DESTDIR)/usr/share/man/man1/" Documentation/gocryptfs.1
install -Dm644 -t "$(DESTDIR)/usr/share/man/man1/" Documentation/gocryptfs-xray.1
2019-03-17 22:28:25 +01:00
install -Dm644 -t "$(DESTDIR)/usr/share/licenses/gocryptfs" LICENSE