mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-04 04:28:20 +00:00
a8757a695f
Fix static build (libr.a) Fix android build farm scripts Build system is still hacky
26 lines
407 B
Makefile
26 lines
407 B
Makefile
TESTS=exit1 hello loop loop2 fun fun2 fun3 fun4
|
|
TESTS+=nest nest2 nest3
|
|
|
|
#ARG PASSING ERR
|
|
TESTS+=fun5 fun6
|
|
|
|
#INVALID SYNTAX
|
|
#TESTS+=looptail
|
|
|
|
include ../../config.mk
|
|
|
|
BINDEPS=r_egg r_asm r_parse r_syscall r_db r_util r_lib
|
|
BIN=test
|
|
OBJ=test.o
|
|
|
|
.PHONY: t tests myclean
|
|
|
|
include ../../rules.mk
|
|
include ../../db/r.mk
|
|
|
|
t tests:
|
|
@for a in ${TESTS} ; do sh t-$$a.sh ; done
|
|
|
|
myclean:
|
|
rm -f test${EXT_EXE} test.o
|