summaryrefslogtreecommitdiff
path: root/nuttx/arch/z16/src/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-04 21:04:30 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-04 21:04:30 +0000
commitda1ae022722331326cbe3880b355ea9166e50de4 (patch)
tree33bc0fd2649b8ea583d975029a6cfcbcbd606047 /nuttx/arch/z16/src/Makefile
parent38ef1b734afd1994804529ddbf5d28a8106f089b (diff)
downloadpx4-nuttx-da1ae022722331326cbe3880b355ea9166e50de4.tar.gz
px4-nuttx-da1ae022722331326cbe3880b355ea9166e50de4.tar.bz2
px4-nuttx-da1ae022722331326cbe3880b355ea9166e50de4.zip
Change = to += in setting of LDFLAGS in all architecture Makefiles
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5311 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch/z16/src/Makefile')
-rw-r--r--nuttx/arch/z16/src/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/arch/z16/src/Makefile b/nuttx/arch/z16/src/Makefile
index 40dc73c5e..088aeebd2 100644
--- a/nuttx/arch/z16/src/Makefile
+++ b/nuttx/arch/z16/src/Makefile
@@ -49,7 +49,7 @@ INCLUDES = $(ARCHSTDINCLUDES) $(USRINCLUDES)
CFLAGS = $(ARCHWARNINGS) $(ARCHOPTIMIZATION) $(ARCHCPUFLAGS) $(INCLUDES) $(ARCHDEFINES) $(EXTRADEFINES)
CPPFLAGS += -I$(ARCHSRCDIR)
ifeq ($(COMPILER),zneocc.exe)
-LDFLAGS = @"${shell cygpath -w $(ARCHSRCDIR)/nuttx.linkcmd}"
+LDFLAGS += @"${shell cygpath -w $(ARCHSRCDIR)/nuttx.linkcmd}"
endif
HEAD_ASRC = $(HEAD_SSRC:.S=$(ASMEXT))