diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-04-23 06:47:26 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-04-23 06:47:26 +0000 |
commit | faf584ff60ea5241873e676bcf119f3bd2278a6d (patch) | |
tree | 3e47f66cb748845fc55aa6b8c3af2e9383937eba /demos/STM32/NASA-OSAL-STM32F746G-DISCOVERY | |
parent | 498be17d1f3e02d9bf217a10a8c406ac19a4d322 (diff) | |
download | ChibiOS-faf584ff60ea5241873e676bcf119f3bd2278a6d.tar.gz ChibiOS-faf584ff60ea5241873e676bcf119f3bd2278a6d.tar.bz2 ChibiOS-faf584ff60ea5241873e676bcf119f3bd2278a6d.zip |
GCC asm files extension changed from .s to .S.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9345 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/STM32/NASA-OSAL-STM32F746G-DISCOVERY')
-rw-r--r-- | demos/STM32/NASA-OSAL-STM32F746G-DISCOVERY/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/demos/STM32/NASA-OSAL-STM32F746G-DISCOVERY/Makefile b/demos/STM32/NASA-OSAL-STM32F746G-DISCOVERY/Makefile index 5a0192aef..0c23ce29f 100644 --- a/demos/STM32/NASA-OSAL-STM32F746G-DISCOVERY/Makefile +++ b/demos/STM32/NASA-OSAL-STM32F746G-DISCOVERY/Makefile @@ -144,7 +144,8 @@ TCSRC = TCPPSRC =
# List ASM source files here
-ASMSRC = $(STARTUPASM) $(PORTASM) $(OSALASM)
+ASMSRC =
+ASMXSRC = $(STARTUPASM) $(PORTASM) $(OSALASM)
INCDIR = $(CHIBIOS)/os/license \
$(STARTUPINC) $(KERNINC) $(PORTINC) $(OSALINC) \
|