rizin/libr/cons/d/Makefile
pancake be46b9da31 Initial support for truecolor (xterm only)
Add e scr.truecolor variable
Add !! command to save history
Add ec: command to randomize palette
Minor rgb trash fix,
2013-07-17 19:34:27 +02:00

23 lines
377 B
Makefile

include ../../../config-user.mk
P=${DESTDIR}${DATADIR}/radare2/${VERSION}/cons
all clean:
.PHONY: all clean install install-symlink symstall
install: ${F_SDB}
rm -rf $P
mkdir -p $P
cp -f * $P
CWD=$(shell pwd)
symstall install-symlink:
mkdir -p $P
for a in * ; do \
if [ $$a != Makefile ]; then \
ln -fs ${CWD}/$$a $P/$$a ; \
fi ; \
done
uninstall:
rm -rf $P