We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 766432e commit b84630bCopy full SHA for b84630b
Makefile
@@ -17,13 +17,13 @@ certgraph.mac: certgraph.go
17
certgraph.exe: certgraph.go
18
GOOS=windows GOARCH=386 go build -o certgraph.exe $^
19
20
-release.linux: certgraph.linux
21
- zip certgraph.linux.$(GIT_DATE).zip $^
+certgraph.linux.$(GIT_DATE).zip: certgraph.linux
+ zip $@ $^
22
23
-release.mac: certgraph.mac
24
- zip certgraph.mac.$(GIT_DATE).zip $^
+certgraph.mac.$(GIT_DATE).zip: certgraph.mac
25
26
-release.win: certgraph.exe
27
- zip certgraph.win.$(GIT_DATE).zip $^
+certgraph.win.$(GIT_DATE).zip: certgraph.exe
28
29
-release: release.mac release.linux release.win
+release: certgraph.linux.$(GIT_DATE).zip certgraph.mac.$(GIT_DATE).zip certgraph.win.$(GIT_DATE).zip
0 commit comments