mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-07 22:03:13 +00:00
28 lines
415 B
Makefile
28 lines
415 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 qnx.mk wind.mk bochs.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
|