File tree 1 file changed +9
-9
lines changed
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -20,24 +20,24 @@ BUILD_LINE=GOOS=$(GOOS) GOARCH=$(GOARCH) go build -o $@ $(SOURCES)
20
20
# Build binary for all platforms
21
21
all : $(addprefix $(BUILDS ) /, ccbootutil ccbootutil.osx ccbootutil.exe)
22
22
23
- $(BUILDS ) /ccbootutil : $( SOURCES )
24
- $(BUILDS ) /ccbootutil : GOOS=linux GOARCH=amd64
23
+ $(BUILDS ) /ccbootutil : GOOS=linux
24
+ $(BUILDS ) /ccbootutil : GOARCH=amd64
25
25
$(BUILDS ) /ccbootutil : BINNAME=ccbootutil
26
- $(BUILDS ) /ccbootutil :
26
+ $(BUILDS ) /ccbootutil : $( SOURCES ) Makefile
27
27
$(MKDIR_LINE )
28
28
$(BUILD_LINE )
29
29
30
- $(BUILDS ) /ccbootutil.osx : $( SOURCES )
31
- $(BUILDS ) /ccbootutil.osx : GOOS=darwin GOARCH=amd64
30
+ $(BUILDS ) /ccbootutil.osx : GOOS=darwin
31
+ $(BUILDS ) /ccbootutil.osx : GOARCH=amd64
32
32
$(BUILDS ) /ccbootutil.osx : BINNAME=ccbootutil.osx
33
- $(BUILDS ) /ccbootutil.osx :
33
+ $(BUILDS ) /ccbootutil.osx : $( SOURCES ) Makefile
34
34
$(MKDIR_LINE )
35
35
$(BUILD_LINE )
36
36
37
- $(BUILDS ) /ccbootutil.exe : $( SOURCES )
38
- $(BUILDS ) /ccbootutil.exe : GOOS=windows GOARCH=386
37
+ $(BUILDS ) /ccbootutil.exe : GOOS=windows
38
+ $(BUILDS ) /ccbootutil.exe : GOARCH=386
39
39
$(BUILDS ) /ccbootutil.exe : BINNAME=ccbootutil.exe
40
- $(BUILDS ) /ccbootutil.exe :
40
+ $(BUILDS ) /ccbootutil.exe : $( SOURCES ) Makefile
41
41
$(MKDIR_LINE )
42
42
$(BUILD_LINE )
43
43
You can’t perform that action at this time.
0 commit comments