moved android run/stop to the main makefile
authorJohn Tsiombikas <nuclear@member.fsf.org>
Sun, 26 Dec 2021 22:33:24 +0000 (00:33 +0200)
committerJohn Tsiombikas <nuclear@member.fsf.org>
Sun, 26 Dec 2021 22:33:24 +0000 (00:33 +0200)
Makefile
RUN [deleted file]

index 21c5164..fd57f47 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -59,6 +59,14 @@ android-clean:
 android-libs:
        $(MAKE) -f Makefile.android libs
 
+.PHONY: run
+run:
+       $(MAKE) -f Makefile.android install run
+
+.PHONY: stop
+stop:
+       $(MAKE) -f Makefile.android stop
+
 .PHONY: cross
 cross:
        $(MAKE) CC=i686-w64-mingw32-gcc sys=mingw
diff --git a/RUN b/RUN
deleted file mode 100755 (executable)
index cffff37..0000000
--- a/RUN
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-
-make -f Makefile.android install && \
-       make -f Makefile.android run