- env.sh now also uses DYLD_LIBRARY_PATH
- Fixes in ollyasm/dis to link with no global variables
- Remove double definition of global _state
- Same for asm_java
- Split -shared and -Wl,-R into LDFLAGS_{LIB|LINKPATH}
- Fixes linkage in osx
- anal_x86_bea plugin now links correctly against BeaEgine.o
- dietline is now #include'd from line.c
- no debugger support yet
- Do not externalize any variable. Some linkage does not support it
* Remove bininfo dependency .. aims to be merged into bin soon
* Added r_str_case() method to change to lower/upper case a string
22 lines
430 B
Makefile
22 lines
430 B
Makefile
include ../../../config.mk
|
|
OBJ=interface.o gdbwrapper.o client.o
|
|
CFLAGS=-Iinclude -I../../../include
|
|
ERESIPATH=${HOME}/prg/eresi
|
|
BIN=client
|
|
|
|
all: ${BIN}
|
|
|
|
${BIN}: ${OBJ}
|
|
${CC} ${OBJ} -o ${BIN}
|
|
|
|
sync:
|
|
@if [ -d ${ERESIPATH} ]; then \
|
|
cp -v ${ERESIPATH}/libgdbwrap/*.c . ; \
|
|
cp -v ${ERESIPATH}/libgdbwrap/include/*.h include ; \
|
|
echo Sync done ; \
|
|
else \
|
|
echo Give me ERESIPATH ; \
|
|
fi
|
|
|
|
clean:
|
|
-rm -f client ${OBJ} *.o a.out
|