aboutsummaryrefslogtreecommitdiff
path: root/nuttx/binfmt/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-10-25 16:18:20 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-10-25 16:18:20 +0000
commit630862cd04e0f807f9d1d9d2ed8ba8f044dcedfa (patch)
treeeef8d62f4f6b69c9377ef1814144713d434eb43c /nuttx/binfmt/Makefile
parenta91b6552cdb1b147461b75128576012192d9e933 (diff)
downloadpx4-firmware-630862cd04e0f807f9d1d9d2ed8ba8f044dcedfa.tar.gz
px4-firmware-630862cd04e0f807f9d1d9d2ed8ba8f044dcedfa.tar.bz2
px4-firmware-630862cd04e0f807f9d1d9d2ed8ba8f044dcedfa.zip
A little more ELF loader logic
git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5257 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/binfmt/Makefile')
-rw-r--r--nuttx/binfmt/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/binfmt/Makefile b/nuttx/binfmt/Makefile
index 1b98e3ede..4724abeff 100644
--- a/nuttx/binfmt/Makefile
+++ b/nuttx/binfmt/Makefile
@@ -56,6 +56,7 @@ BINFMT_CSRCS += symtab_findbyname.c symtab_findbyvalue.c \
VPATH =
SUBDIRS =
+DEPPATH = --dep-path .
include libnxflat/Make.defs
include libelf/Make.defs
@@ -82,8 +83,7 @@ $(BIN): $(BINFMT_OBJS)
done ; )
.depend: Makefile $(BINFMT_SRCS)
- @$(MKDEP) --dep-path . --dep-path libnxflat \
- $(CC) -- $(CFLAGS) -- $(BINFMT_SRCS) >Make.dep
+ @$(MKDEP) $(DEPPATH) $(CC) -- $(CFLAGS) -- $(BINFMT_SRCS) >Make.dep
@touch $@
depend: .depend