radare2/libr/debug/p/Makefile
pancake a8757a695f Fix android build and add r_core->anal_define api
Fix static build (libr.a)
Fix android build farm scripts
Build system is still hacky
2012-09-03 01:27:52 +02:00

28 lines
391 B
Makefile

include ../../config.mk
ifeq ($(WITHPIC),1)
CFLAGS+=-I../../include -Wall ${PIC_FLAGS} ${LDFLAGS_LIB} ${LDFLAGS_LINKPATH}.. -DCORELIB
foo: all
ALL_TARGETS=
DEBUGS=native.mk gdb.mk
include $(DEBUGS)
all: ${ALL_TARGETS}
@true
pre:
@cd libgdbwrap && ${MAKE}
clean:
-rm -f *.${EXT_SO} *.o ${STATIC_OBJ}
mrproper: clean
-rm -f *.d */*.d
.PHONY: all clean foo mrproper
else
all:
endif