mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-05 20:17:43 +00:00
019792d7ec
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
|