26 lines
479 B
Makefile
26 lines
479 B
Makefile
CC=cc
|
|
PREFIX=
|
|
LIBS=-lncurses
|
|
|
|
all: build
|
|
|
|
clean:
|
|
rm ascii
|
|
|
|
ascii: ascii.c
|
|
$(CC) ascii.c $(LIBS) -o ascii
|
|
|
|
build: ascii
|
|
|
|
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/
|