Commit 23906b28 authored by ROOL's avatar ROOL 🤖
Browse files

This commit was manufactured by cvs2git to create tag 'dcotton_autobuild_BaseSW'.

Sprout from master 1999-12-01 11:46:41 UTC William Turner <wturner@gitlab.riscosopen.org> 'Forgot to add EventsSwi Docs. Added now.'
Cherrypick from master 2000-05-12 14:38:18 UTC Stewart Brodie <sbrodie@gitlab.riscosopen.org> 'Made 32-bit compatible':
    Makefile
    VersionNum
No related merge requests found
...@@ -70,11 +70,12 @@ DEBUG_LIBS = <Lib$Dir>.DebugLib.o.DebugLibzm ...@@ -70,11 +70,12 @@ DEBUG_LIBS = <Lib$Dir>.DebugLib.o.DebugLibzm
SOCKLIB = TCPIPLibs:o.socklibzm SOCKLIB = TCPIPLibs:o.socklibzm
INETLIB = TCPIPLibs:o.inetlibzm INETLIB = TCPIPLibs:o.inetlibzm
UNIXLIB = TCPIPLibs:o.unixlibzm UNIXLIB = TCPIPLibs:o.unixlibzm
ASMUTILS = C:AsmUtils.o.AsmUtilsZM
# #
# Include files # Include files
# #
INCLUDES = -IC:,<Lib$Dir>. INCLUDES = -IC:AsmUtils,C:,<Lib$Dir>.
# Program specific options: # Program specific options:
# #
...@@ -87,7 +88,6 @@ EXPORTS = ${EXP_C_H}.${COMPONENT} ...@@ -87,7 +88,6 @@ EXPORTS = ${EXP_C_H}.${COMPONENT}
OBJS = \ OBJS = \
o.module \ o.module \
o.sctrans \ o.sctrans \
o.irqs \
o.path \ o.path \
o.orga \ o.orga \
o.schlumb \ o.schlumb \
...@@ -100,7 +100,6 @@ o.header ...@@ -100,7 +100,6 @@ o.header
DOBJS = \ DOBJS = \
od.module \ od.module \
od.sctrans \ od.sctrans \
od.irqs \
od.path \ od.path \
od.orga \ od.orga \
od.schlumb \ od.schlumb \
...@@ -162,7 +161,7 @@ dirs: ...@@ -162,7 +161,7 @@ dirs:
# ROM target (re-linked at ROM Image build time) # ROM target (re-linked at ROM Image build time)
# #
${TARGET}: ${OBJS} ${ROMCSTUBS} dirs header.h ${TARGET}: ${OBJS} ${ROMCSTUBS} dirs header.h
${LD} -o $@ -aof ${OBJS} ${ROMCSTUBS} ${LD} -o $@ -aof ${OBJS} ${ROMCSTUBS} ${ASMUTILS}
# #
# Final link for the ROM Image (using given base address) # Final link for the ROM Image (using given base address)
...@@ -175,11 +174,11 @@ rom_link: ...@@ -175,11 +174,11 @@ rom_link:
# Target # Target
# #
rm.${COMPONENT}: ${OBJS} dirs header.h rm.${COMPONENT}: ${OBJS} dirs header.h
${LD} -rmf -o $@ ${OBJS} ${CLIB} ${LD} -rmf -o $@ ${OBJS} ${ASMUTILS} ${CLIB}
Access rm.${COMPONENT} RW/R Access rm.${COMPONENT} RW/R
rm.${COMPONENT}D: ${DOBJS} ${DEBUG_LIBS} ${SOCKLIB} ${INETLIB} dirs header.h rm.${COMPONENT}D: ${DOBJS} ${DEBUG_LIBS} ${SOCKLIB} ${INETLIB} ${ASMUTILS} dirs header.h
${LD} -rmf -o $@ ${DOBJS} ${CLIB} ${DEBUG_LIBS} ${SOCKLIB} ${INETLIB} ${LD} -rmf -o $@ ${DOBJS} ${CLIB} ${DEBUG_LIBS} ${SOCKLIB} ${INETLIB} ${ASMUTILS}
Access rm.${COMPONENT}D RW/R Access rm.${COMPONENT}D RW/R
${EXP_C_H}.${COMPONENT}: h.${COMPONENT} ${EXP_C_H}.${COMPONENT}: h.${COMPONENT}
......
/* (0.24) /* (0.26)
* *
* This file is automatically maintained by srccommit, do not edit manually. * This file is automatically maintained by srccommit, do not edit manually.
* *
*/ */
#define Module_MajorVersion_CMHG 0.24 #define Module_MajorVersion_CMHG 0.26
#define Module_MinorVersion_CMHG #define Module_MinorVersion_CMHG
#define Module_Date_CMHG 01 Dec 1999 #define Module_Date_CMHG 12 May 2000
#define Module_MajorVersion "0.24" #define Module_MajorVersion "0.26"
#define Module_Version 24 #define Module_Version 26
#define Module_MinorVersion "" #define Module_MinorVersion ""
#define Module_Date "01 Dec 1999" #define Module_Date "12 May 2000"
#define Module_FullVersion "0.24" #define Module_FullVersion "0.26"
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