diff options
author | Luke Shumaker <lukeshu@beefcake.parabola.nu> | 2018-05-18 23:06:08 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@beefcake.parabola.nu> | 2018-05-18 23:06:08 -0400 |
commit | 1fd8e694c26a05069da7c660f1c4b95395bfea59 (patch) | |
tree | d30d61b2899f75bda04daa06e6ed441fd217eaf1 /Makefile | |
parent | 9018cb140b386582a1c0f19e7dbd8026960b3803 (diff) |
use a go workspace
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -10,6 +10,7 @@ CPPFLAGS += -O2 -D_FORTIFY_SOURCE=2 all: cow-dedupe-range all: cow-extent-map +all: cow-dedupe .PHONY: all %: src/%.o @@ -18,5 +19,11 @@ all: cow-extent-map cow-dedupe-range: lib/dedupe-range.o cow-extent-map: lib/extent-map.o lib/strextentflags.o +cow-dedupe: go/bin/cow-dedupe + cp $< $@ +go/bin/cow-dedupe: FORCE + GOPATH=$(CURDIR)/go go install $(@F) + .SECONDARY: .DELETE_ON_ERROR: +.PHONY: FORCE |