radare2/libr/bp/p/Makefile

27 lines
389 B
Makefile
Raw Normal View History

include ../../config.mk
2015-10-09 19:24:15 +00:00
include ../../../mk/platform.mk
ifeq ($(WITHPIC),1)
2015-10-09 19:24:15 +00:00
CFLAGS+=-I../../include -I../arch/ -I../arch/include -Wall ${PIC_CFLAGS} ${LDFLAGS_LIB}
CFLAGS+=-D__UNIX__
foo: all
ALL_TARGETS=
ARCHS=x86.mk arm.mk
include $(ARCHS)
all: ${ALL_TARGETS}
@true
clean:
-rm -f *.so *.o ${STATIC_OBJ}
mrproper: clean
-rm -f *.d
.PHONY: all clean foo mrproper
else
all:
endif