mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-13 16:18:33 +00:00
fcb58f1ff7
- Make use of some gnu extensions to make it cleaner - Fixes (mostly) build system
16 lines
248 B
Makefile
16 lines
248 B
Makefile
BINDEPS=r_util r_search
|
|
|
|
include ../../rules.mk
|
|
|
|
all: test test-str
|
|
|
|
test:
|
|
${CC} -g -I ../../include test.c ${LDFLAGS} -o test
|
|
|
|
test-str:
|
|
${CC} -g -I ../../include test-str.c ${LDFLAGS} -o test-str
|
|
|
|
clean:
|
|
rm -f test test.o test-str test-str.o
|
|
|