ascii-table/Makefile

37 lines
816 B
Makefile
Raw Permalink Normal View History

PREFIX=
2019-01-07 16:45:23 -08:00
CC=cc
2019-02-10 19:05:20 -08:00
CFLAGS=-O3 -std=gnu99
LIBS=-lncurses -lm
2018-11-23 23:58:54 -08:00
2019-01-07 16:45:23 -08:00
all: ascii
2018-11-23 23:58:54 -08:00
clean:
rm ascii
ascii: ascii.c
2019-01-07 16:45:23 -08:00
$(CC) ascii.c $(LIBS) $(CFLAGS) -o ascii
2018-11-23 23:58:54 -08:00
install: ascii
@prefix="$(PREFIX)"; \
if [[ ! $$prefix ]]; then \
read -p $$'\033[1mWhere do you want to install? (default: /usr/local) \033[0m' prefix; \
fi; \
if [[ ! $$prefix ]]; then \
prefix="/usr/local"; \
fi; \
mkdir -pv $$prefix/bin $$prefix/share/man/man1 \
&& cp -v ascii $$prefix/bin/ \
&& cp -v doc/ascii.1 $$prefix/share/man/man1/
2019-01-03 21:35:39 -08:00
uninstall:
@prefix="$(PREFIX)"; \
if [[ ! $$prefix ]]; then \
read -p $$'\033[1mWhere do you want to uninstall from? (default: /usr/local) \033[0m' prefix; \
fi; \
if [[ ! $$prefix ]]; then \
prefix="/usr/local"; \
fi; \
echo "Deleting..."; \
rm -rvf $$prefix/bin/ascii $$prefix/share/man/man1/ascii.1
2019-01-07 16:45:23 -08:00