build app with cli:Error: Could not find or load main class

Hi,

I was building my app with cli from console but to get this error propmt :Error: Could not find or load main class  

This is one target of my makefile. I get it from vscode console ouput

build:
@$(JAVA_HOME)/bin/java \
-Xms1g \
-claspath . \
-Dfile.encoding=UTF-8 \
-Dapple.awt.UIElement=true \
-jar $(SDK_HOME)/bin/monkeybrains.jar \
-o bin/$(appName).prg \
-f monkey.jungle \
-y $(PRIVATE_KEY) \
-d $(DEVICE)_sim \
-w -l 0
My command
make build DEVICE=fr245m
Error message:
Error: Could not find or load main class  
I  think I need to specify the classpath, just wondering which path should I use.