mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-05 05:24:13 +00:00
fcf5fcd58c
Since the lwip library is used only by the vfs_lwip plugin, this patch moves the Genode-specific support code local to the VFS plugin, easing further simplification and allowing for a tighter integration with the VFS plugin. The recipes for api/lwip and src/vfs_lwip stay separate as both parts use different licenses. Issue #4697
17 lines
284 B
Makefile
17 lines
284 B
Makefile
SRC_CC = vfs.cc printf.cc rand.cc sys_arch.cc
|
|
|
|
VFS_DIR = $(REP_DIR)/src/lib/vfs/lwip
|
|
INC_DIR += $(VFS_DIR)
|
|
|
|
REP_INC_DIR += src/lib/lwip/include
|
|
|
|
LD_OPT += --version-script=$(VFS_DIR)/symbol.map
|
|
|
|
LIBS += lwip
|
|
|
|
vpath %.cc $(VFS_DIR)
|
|
|
|
SHARED_LIB = yes
|
|
|
|
CC_CXX_WARN_STRICT_CONVERSION =
|