2015-01-14 20:36:33 +00:00
|
|
|
.PHONY: all clean debug
|
2014-11-15 18:08:15 +00:00
|
|
|
|
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
|
2014-11-15 18:08:15 +00:00
|
|
|
|
2015-01-14 20:36:33 +00:00
|
|
|
debug: restic.debug
|
2015-01-14 16:32:37 +00:00
|
|
|
|
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
|
2014-11-15 18:08:15 +00:00
|
|
|
|
2015-01-14 16:32:37 +00:00
|
|
|
restic.debug: $(wildcard *.go) $(wildcard ../../*.go) $(wildcard ../../*/*.go)
|
2015-01-14 20:36:33 +00:00
|
|
|
go build -a -tags debug -o restic.debug
|
2014-11-15 18:08:15 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
go clean
|
2015-01-14 16:32:37 +00:00
|
|
|
rm -f restic restic.debug
|