I'm trying the make a super simple makefile to compile the two files Board.java and Snake.java. When I use the make command it gives me this error:
makefile:2: *** missing separator. Stop.
Makefile:
Snake.class : Snake.java Board.class
javac Snake.java;
Board.class : Board.java
javac Board.java