radare2/libr/fs/p/Makefile
pancake 6df760a04c * Some C90 fixes in r_fs using r_str_chop_path
* Apply patch from @capi_x using burg code instead of grub one
  - Fixes build in OSX and opens the door to new filesystems
2011-02-21 09:26:32 +01:00

26 lines
514 B
Makefile

include ../../config.mk
CFLAGS+=-I../../include -Wall -shared -fPIC ${LDFLAGS_LIB} ${LDFLAGS_LINKPATH}..
#CFLAGS+=-I../../include
LDFLAGS+=${LINK}
foo: all
#FILESYSTEMS=hfs.mk iso9660.mk jfs.mk
#FILESYSTEMS=hfsplus.mk
FILESYSTEMS=ext2.mk fat.mk ntfs.mk reiserfs.mk tar.mk udf.mk ufs2.mk ufs.mk xfs.mk hfs.mk
include $(FILESYSTEMS)
all:
cd grub && ${MAKE} lib
clean:
-rm -f *.${EXT_SO} *.o ${STATIC_OBJ}
cd grub && ${MAKE} clean
mrproper: clean
-rm -f *.d ../arch/*/*/*.d
.PHONY: all clean foo mrproper