2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-01 00:20:48 +00:00
restic/cmd/restic/Makefile

19 lines
376 B
Makefile
Raw Normal View History

2015-01-14 20:36:33 +00:00
.PHONY: all clean debug
2014-11-16 14:40:04 +00:00
# include config file if it exists
-include $(CURDIR)/config.mk
2014-12-05 20:45:49 +00:00
all: restic
2015-01-14 20:36:33 +00:00
debug: restic.debug
2014-12-05 20:45:49 +00:00
restic: $(wildcard *.go) $(wildcard ../../*.go) $(wildcard ../../*/*.go)
2015-01-14 20:36:33 +00:00
go build -a
restic.debug: $(wildcard *.go) $(wildcard ../../*.go) $(wildcard ../../*/*.go)
2015-01-14 20:36:33 +00:00
go build -a -tags debug -o restic.debug
clean:
go clean
rm -f restic restic.debug