mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-13 02:21:34 +00:00
![pancake](/assets/img/avatar_default.png)
cd sys/apia ; make checkout the directory out/ when finished, helps to identify unused apis, unnecessary libraries linked, bad api usages, renamings, ...
15 lines
227 B
Makefile
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
|