Skip to content

Commit

Permalink
Update makefile to fix things
Browse files Browse the repository at this point in the history
  • Loading branch information
dimkauzh committed Oct 3, 2023
1 parent d48b214 commit 52e9ab8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,6 @@ go.work
# Webassembly compiled stuff
**.wasm
**.DS_Store

# Build Dir
build/
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ build_test:
@echo " ----------------------------------------------------"
@echo

GOOS=js GOARCH=wasm go build -o build/main.wasm tests/backend.go
GOOS=js GOARCH=wasm go build -o build/main.wasm tests/backend/backend.go
GOOS=js GOARCH=wasm go build -o build/main.wasm tests/test1/test1.go

test_backend:
@echo
Expand Down

0 comments on commit 52e9ab8

Please sign in to comment.