9 lines
316 B
Makefile
9 lines
316 B
Makefile
OBJ_MREPLACE+=parse_mreplace.o parse_mreplace/mreplace.o parse_mreplace/mmemory.o
|
|
|
|
TARGET_MREPLACE=parse_mreplace.${EXT_SO}
|
|
ALL_TARGETS+=${TARGET_MREPLACE}
|
|
STATIC_OBJ+=${OBJ_MREPLACE}
|
|
|
|
${TARGET_MREPLACE}: ${OBJ_MREPLACE}
|
|
${CC} -shared ${CFLAGS} -o ${TARGET_MREPLACE} ${OBJ_MREPLACE}
|
|
@#strip -s asm_dummy.${EXT_SO}
|