/usr/share/radare2/0.9.6/cons/Makefile is in libradare2-common 0.9.6-3.1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 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
|