Browse Source

Update Makefile

Arturo Filastò 7 years ago
parent
commit
4045955988
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Bindings/CXX/Makefile

+ 2 - 2
Bindings/CXX/Makefile

@@ -1,8 +1,8 @@
 shared:
-	go build -buildmode=c-shared -o psi.dylib psi.go
+	go build -buildmode=c-shared -o psi.dylib main.go
 .PHONY: shared
 
 static:
-	go build -buildmode=c-archive -o psi.a psi.go
+	go build -buildmode=c-archive -o psi.a main.go
 
 .PHONY: static