In the kernel build, only the user libraries should be exported.

This commit is contained in:
Gregory Nutt
2014-09-04 11:43:41 -06:00
parent 111e44ff74
commit b000425e52
5 changed files with 40 additions and 4 deletions
+6
View File
@@ -39,6 +39,8 @@
# is disabled.
# USERLIBS is the list of libraries used to build the final user-space
# application
# EXPORTLIBS is the list of libraries that should be exported by
# 'make export' is
NUTTXLIBS = lib$(DELIM)libsched$(LIBEXT)
USERLIBS =
@@ -107,3 +109,7 @@ endif
ifeq ($(CONFIG_AUDIO),y)
NUTTXLIBS += lib$(DELIM)libaudio$(LIBEXT)
endif
# Export only the user libraries
EXPORTLIBS = $(USERLIBS)