Commit 480298f2 authored by Jeffrey Lee's avatar Jeffrey Lee
Browse files

Add CLEAN_DEPEND support to AAsmModule makefile fragment. Disable VFP/NEON...

Add CLEAN_DEPEND support to AAsmModule makefile fragment. Disable VFP/NEON assembler for Tungsten ROM versions of BASIC.

Detail:
  Makefiles/AAsmModule - Added ${CLEAN_DEPEND} as a dependency to the 'clean' rule, to allow components to extend the default rule. This is the same functionality that the CApp fragment offers.
  Components/ROOL/Tungsten - Disable VFP/NEON support in the BASIC assembler, due to lack of ROM space.
Admin:
  Required changes for BASIC 1.49


Version 5.33. Tagged as 'BuildSys-5_33'
parent 56fbe7e4
...@@ -53,8 +53,8 @@ NVidia ...@@ -53,8 +53,8 @@ NVidia
TaskManager TaskManager
ADFSFiler ADFSFiler
ARM ARM
BASIC105 BASIC105 -options VFPASM=FALSE
BASIC64 BASIC64 -options VFPASM=FALSE
BASICTrans BASICTrans
BufferManager BufferManager
ColourTrans ColourTrans
......
...@@ -40,6 +40,7 @@ INCLUDED_AASMMODULE = YES ...@@ -40,6 +40,7 @@ INCLUDED_AASMMODULE = YES
# HEADER1 (opt) (leafname of file in hdr to copy to <export$dir> on export_hdrs) # HEADER1 (opt) (leafname of file in hdr to copy to <export$dir> on export_hdrs)
# HEADER2 (opt) (leafname of file in hdr to copy to <export$dir> on export_hdrs) # HEADER2 (opt) (leafname of file in hdr to copy to <export$dir> on export_hdrs)
# EXP_HDR (opt) (directory for exported assembler interface headers) # EXP_HDR (opt) (directory for exported assembler interface headers)
# CLEAN_DEPEND (opt) (phony target for additional clean actions)
# #
# #
# It relies on the following from the build system: # It relies on the following from the build system:
...@@ -185,7 +186,7 @@ ${GPA_AIF}: ${DBG_OBJECT} ...@@ -185,7 +186,7 @@ ${GPA_AIF}: ${DBG_OBJECT}
# #
# Clean the module # Clean the module
# #
clean${CLEAN} :: clean${CLEAN} :: ${CLEAN_DEPEND}
@IfThere rm.${MACHINE} Then ${ECHO} ${WIPE} rm.${MACHINE} ${WFLAGS} @IfThere rm.${MACHINE} Then ${ECHO} ${WIPE} rm.${MACHINE} ${WFLAGS}
@IfThere rm.${MACHINE} Then ${WIPE} rm.${MACHINE} ${WFLAGS} @IfThere rm.${MACHINE} Then ${WIPE} rm.${MACHINE} ${WFLAGS}
@-IfThere rm.* Then Else IfThere rm Then ${ECHO} ${WIPE} rm ${WFLAGS} @-IfThere rm.* Then Else IfThere rm Then ${ECHO} ${WIPE} rm ${WFLAGS}
......
/* (5.32) /* (5.33)
* *
* This file is automatically maintained by srccommit, do not edit manually. * This file is automatically maintained by srccommit, do not edit manually.
* Last processed by srccommit version: 1.1. * Last processed by srccommit version: 1.1.
* *
*/ */
#define Module_MajorVersion_CMHG 5.32 #define Module_MajorVersion_CMHG 5.33
#define Module_MinorVersion_CMHG #define Module_MinorVersion_CMHG
#define Module_Date_CMHG 19 Dec 2011 #define Module_Date_CMHG 19 Dec 2011
#define Module_MajorVersion "5.32" #define Module_MajorVersion "5.33"
#define Module_Version 532 #define Module_Version 533
#define Module_MinorVersion "" #define Module_MinorVersion ""
#define Module_Date "19 Dec 2011" #define Module_Date "19 Dec 2011"
...@@ -18,6 +18,6 @@ ...@@ -18,6 +18,6 @@
#define Module_ComponentName "BuildSys" #define Module_ComponentName "BuildSys"
#define Module_ComponentPath "castle/RiscOS/BuildSys" #define Module_ComponentPath "castle/RiscOS/BuildSys"
#define Module_FullVersion "5.32" #define Module_FullVersion "5.33"
#define Module_HelpVersion "5.32 (19 Dec 2011)" #define Module_HelpVersion "5.33 (19 Dec 2011)"
#define Module_LibraryVersionInfo "5:32" #define Module_LibraryVersionInfo "5:33"
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment