From: John Tsiombikas Date: Sun, 26 Dec 2021 22:33:24 +0000 (+0200) Subject: moved android run/stop to the main makefile X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=commitdiff_plain;ds=sidebyside;h=7cec9b2f3e7cbaa6d472060b51f60c145bf88406;p=andemo moved android run/stop to the main makefile --- 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