We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 449adc4 commit f8707dfCopy full SHA for f8707df
Makefile
@@ -7,7 +7,7 @@ ALL = \
7
$(foreach suffix,linux osx win.exe,\
8
build/gr-$(arch)-$(suffix))) \
9
$(foreach arch,arm arm64,\
10
- build/go-crond-$(arch)-linux)
+ build/gr-$(arch)-linux)
11
12
all: test build
13
@@ -32,11 +32,11 @@ build/gr-32-%: $(SOURCE)
32
@mkdir -p $(@D)
33
CGO_ENABLED=0 GOOS=$(firstword $($*) $*) GOARCH=386 $(GOBUILD) -o $@
34
35
-build/go-crond-arm-linux: $(SOURCE)
+build/gr-arm-linux: $(SOURCE)
36
37
CGO_ENABLED=0 GOOS=linux GOARCH=arm GOARM=6 $(GOBUILD) -o $@
38
39
-build/go-crond-arm64-linux: $(SOURCE)
+build/gr-arm64-linux: $(SOURCE)
40
41
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 $(GOBUILD) -o $@
42
0 commit comments