rizin/libr/debug/p/Makefile
GustavoLCR 489538e02b
Add DbgEng based debug backend for Windows ##debug (#17491)
* Rename `windbg` plugin to `winkd` ##debug
* Add DbgEng based debug backend for Windows ##debug
2020-08-24 19:01:10 +08:00

26 lines
447 B
Makefile

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