diff Makefile @ 197:f3302a2d7815

Convert to a Java application, instead of browser applet, as no browser supports Java applets anymore.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 24 Apr 2019 12:55:54 +0300
parents 60871afc2702
children f6f8fd893c49
line wrap: on
line diff
--- a/Makefile	Wed Apr 24 12:37:59 2019 +0300
+++ b/Makefile	Wed Apr 24 12:55:54 2019 +0300
@@ -66,8 +66,8 @@
 	$(COMPILE_OBJ)
 
 
-run: $(RUN)
-	$(APPLETVIEWER) $(patsubst %.class,%.html,$<)
+run: $(MAINCLASS)
+	@$(JAVA) $(JAVA_FLAGS) $(patsubst %.class,%,$<)
 
 
 ###