biskuteri-cafe-JKomasto2/run
Snowyfox e4f13ad8c8 Added attempt at using AttributedString.
Somewhat works now, but I think we'll abandon it..
2022-05-14 18:04:46 -04:00

16 lines
259 B
Makefile
Executable File

#!/usr/bin/make -f
CLASSPATH=.:../Hinoki:/usr/share/java/javax.json.jar
COMPILE_OPTIONS=-Xlint:deprecation
RUNTIME_OPTIONS=-ea
c:
javac -cp $(CLASSPATH) $(COMPILE_OPTIONS) *.java
r:
java -cp $(CLASSPATH) $(RUNTIME_OPTIONS) JKomasto
cr: c r
.PHONY: c r