From 7cec9b2f3e7cbaa6d472060b51f60c145bf88406 Mon Sep 17 00:00:00 2001 From: John Tsiombikas Date: Mon, 27 Dec 2021 00:33:24 +0200 Subject: [PATCH] moved android run/stop to the main makefile --- Makefile | 8 ++++++++ RUN | 4 ---- 2 files changed, 8 insertions(+), 4 deletions(-) delete mode 100755 RUN diff --git a/Makefile b/Makefile index 21c5164..fd57f47 100644 --- 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 index cffff37..0000000 --- a/RUN +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh - -make -f Makefile.android install && \ - make -f Makefile.android run -- 1.7.10.4