radare2/binr/binr.mk
pancake b7c554b24a * Some linkage fixes for binr/
* Added 'at' command (not yet implemented at all)
  - Some refactoring in r_debug_trace code
  - Remove deprecated r_trace.h
2010-06-04 00:56:44 +02:00

19 lines
334 B
Makefile

include ../../libr/config.mk
.PHONY: all clean
CFLAGS+=-I../../libr/include
CFLAGS+=-DVERSION=\"${VERSION}\"
CFLAGS+=-DLIBDIR=\"${PREFIX}/lib\"
#LIBS=$(subst r_,-lr_,$(DEPS))
LIBS+=$(subst r_,-L../../libr/,$(DEPS))
all: ${BIN}
${BIN}: ${BIN}.o
${CC} -o ${BIN} ${LIBS} ${LDFLAGS} ${BIN}.o
clean:
rm -f ${BIN} ${BIN}.o ${BIN}.d