2
2
mirror of https://github.com/octoleo/restic.git synced 2025-01-30 02:28:33 +00:00
restic/cmd/restic/Makefile

19 lines
376 B
Makefile
Raw Normal View History

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