diff --git a/Makefile b/Makefile index 9327b35..f8607ba 100644 --- a/Makefile +++ b/Makefile @@ -4,29 +4,27 @@ CFLAGS = -O3 CFLAGS_DEBUG = -Wall -Wextra -g -pthread CC = cc DESTDIR = /usr -PLATFORM = $(shell uname -o) +PLATFORM = $(shell uname) -ifeq ($(PLATFORM), GNU/Linux) +ifeq ($(PLATFORM), Linux) PREFIX = bin LIBDIR = lib MANDIR = share/man/man1 -else ifeq ($(PLATFORM), Android) - PREFIX = bin - LIBDIR = lib - MANDIR = share/man/man1 - DESTDIR = /data/data/com.termux/file + ifeq ($(shell uname -o), Android) + DESTDIR = /data/data/com.termux/file + endif else ifeq ($(PLATFORM), Darwin) PREFIX = local/bin LIBDIR = local/lib MANDIR = local/share/man/man1 else ifeq ($(PLATFORM), FreeBSD) - CFLAGS += -D__FREEBSD__ + CFLAGS += -D__FREEBSD__ CFLAGS_DEBUG += -D__FREEBSD__ PREFIX = bin LIBDIR = lib MANDIR = share/man/man1 else ifeq ($(PLATFORM), windows32) - CC = gcc + CC = gcc PREFIX = "C:\Program Files" LIBDIR = MANDIR = diff --git a/README.md b/README.md index b10800f..3906cef 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ To install UwUfetch from the source, type these commands in the terminal: git clone https://github.com/TheDarkBug/uwufetch.git cd uwufetch make build # add "CFLAGS+=-D__IPHONE__" if you are building for iOS -sudo make install # for termux, use `make termux` +sudo make install ``` To uninstall: @@ -72,8 +72,6 @@ make build # builds uwufetch make debug # use for debug make install # installs uwufetch (needs root permissons) make uninstall # uninstalls uwufetch (needs root permissons) -make termux # build and install for termux -make termux_uninstall # uninstall for termux ``` ## Images and copyright info @@ -101,4 +99,4 @@ See [COPYRIGHT.md](/res/COPYRIGHT.md). ## License -This program is provided under the [GPL-3.0 License](/LICENSE). \ No newline at end of file +This program is provided under the [GPL-3.0 License](/LICENSE).