mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 23:12:24 +00:00
607036718c
Fixes #942.
21 lines
545 B
Makefile
21 lines
545 B
Makefile
include $(REP_DIR)/ports/fuse-ext2.inc
|
|
FUSE_EXT2_DIR = $(REP_DIR)/contrib/$(FUSE_EXT2)/fuse-ext2
|
|
|
|
FILTER_OUT = fuse-ext2.probe.c fuse-ext2.wait.c
|
|
SRC_C = $(filter-out $(FILTER_OUT), $(notdir $(wildcard $(FUSE_EXT2_DIR)/*.c)))
|
|
SRC_CC = init.cc
|
|
|
|
LIBS = libc libc_block libc_fuse libfuse libext2fs
|
|
|
|
CC_OPT = -DHAVE_CONFIG_H -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
|
|
|
|
CC_CXX_OPT +=-fpermissive
|
|
|
|
INC_DIR += $(REP_DIR)/src/lib/fuse-ext2 \
|
|
$(FUSE_EXT2_DIR)
|
|
|
|
vpath %.c $(FUSE_EXT2_DIR)
|
|
vpath %.cc $(REP_DIR)/src/lib/fuse-ext2
|
|
|
|
SHARED_LIB = yes
|