radare2/libr/bp/p/Makefile
Damien Zammit 632dccc217 Remove LIL_ENDIAN macro and configure option
TODO: Remove other endian cruft from:
- hashing algs
- judy
- squashfs
- grub
- tms320

Signed-off-by: Damien Zammit <damien@zamaudio.com>
2016-05-06 10:21:55 +02:00

27 lines
389 B
Makefile

include ../../config.mk
include ../../../mk/platform.mk
ifeq ($(WITHPIC),1)
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