vfs: depend on ld library

So, users of VFS need not to state this dependency explicitly.
This commit is contained in:
Christian Helmuth 2015-07-06 12:11:30 +02:00
parent 9506c89f88
commit af5c03edaf
3 changed files with 4 additions and 2 deletions

View File

@ -1,3 +1,5 @@
SRC_CC += file_system_factory.cc
LIBS = ld
vpath %.cc $(REP_DIR)/src/lib/vfs

View File

@ -1,6 +1,6 @@
TARGET = cli_monitor
SRC_CC = main.cc
LIBS = base cli_monitor config vfs ld
LIBS = base cli_monitor config vfs
INC_DIR += $(PRG_DIR)
ifeq ($(findstring arm, $(SPECS)), arm)

View File

@ -1,5 +1,5 @@
TARGET = noux
LIBS = alarm config vfs ld
LIBS = alarm config vfs
SRC_CC = main.cc dummy_net.cc
INC_DIR += $(PRG_DIR)
INC_DIR += $(PRG_DIR)/../