summaryrefslogtreecommitdiff
path: root/nuttx/lib/unistd/Make.defs
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/lib/unistd/Make.defs')
-rw-r--r--nuttx/lib/unistd/Make.defs15
1 files changed, 11 insertions, 4 deletions
diff --git a/nuttx/lib/unistd/Make.defs b/nuttx/lib/unistd/Make.defs
index 90f172406..e1441a48d 100644
--- a/nuttx/lib/unistd/Make.defs
+++ b/nuttx/lib/unistd/Make.defs
@@ -1,8 +1,8 @@
############################################################################
# lib/unistd/Make.defs
#
-# Copyright (C) 2011 Gregory Nutt. All rights reserved.
-# Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+# Copyright (C) 2011-2012 Gregory Nutt. All rights reserved.
+# Author: Gregory Nutt <gnutt@nuttx.org>
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
@@ -33,10 +33,17 @@
#
############################################################################
-UNISTD_SRCS = lib_getopt.c lib_getoptargp.c lib_getoptindp.c lib_getoptoptp.c
+# Add the unistd C files to the build
+
+CSRCS += lib_getopt.c lib_getoptargp.c lib_getoptindp.c lib_getoptoptp.c
+
ifneq ($(CONFIG_NFILE_DESCRIPTORS),0)
ifneq ($(CONFIG_DISABLE_ENVIRON),y)
-UNISTD_SRCS += lib_chdir.c lib_getcwd.c
+CSRCS += lib_chdir.c lib_getcwd.c
endif
endif
+# Add the unistd directory to the build
+
+DEPPATH += --dep-path unistd
+VPATH += :unistd