radare2/sys/apia/Makefile
pancake 019792d7ec Initial import of apia, the api analysis tool for r2
cd sys/apia ; make

checkout the directory out/ when finished, helps to identify unused
apis, unnecessary libraries linked, bad api usages, renamings, ...
2017-12-18 00:41:52 +01:00

15 lines
227 B
Makefile

MODS=parse syscall reg bp anal util asm magic bin
MODS+=config socket search crypto hash io fs lang
all: tmp out
out:
mkdir out
for a in ${MODS} ; do sh apia.sh $$a > out/$$a.txt ; done
tmp:
./apis.sh
clean:
rm -rf tmp