mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-10 07:21:55 +00:00
13 lines
315 B
Makefile
13 lines
315 B
Makefile
OBJ_ISO9660=fs_iso9660.o
|
|
EXTRA=$(GRUB)
|
|
CFLAGS+=-Igrub/include
|
|
|
|
STATIC_OBJ+=${OBJ_ISO9660}
|
|
#STATIC_OBJ+=${EXTRA}
|
|
TARGET_ISO9660=fs_iso9660.${EXT_SO}
|
|
|
|
ALL_TARGETS+=${TARGET_ISO9660}
|
|
|
|
${TARGET_ISO9660}: ${OBJ_ISO9660}
|
|
${CC} $(call libname,fs_iso9660) ${LDFLAGS} ${CFLAGS} -o ${TARGET_ISO9660} ${OBJ_ISO9660} ${EXTRA}
|