Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
RiscOS
S
Sources
Toolbox
TinyStubs
Commits
b059755f
Commit
b059755f
authored
28 years ago
by
Neil Turton
Browse files
Options
Download
Email Patches
Plain Diff
File type changed
parent
e0f77ef4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
221 deletions
+0
-221
.gitattributes
.gitattributes
+0
-1
MakeROM,fe1
MakeROM,fe1
+0
-103
Makefile,fe1
Makefile,fe1
+0
-117
No files found.
.gitattributes
View file @
b059755f
...
...
@@ -2,4 +2,3 @@ s/** gitlab-language=armasm linguist-language=armasm linguist-detectable=true
c/** gitlab-language=c linguist-language=c linguist-detectable=true
h/** gitlab-language=c linguist-language=c linguist-detectable=true
cmhg/** gitlab-language=cmhg linguist-language=cmhg linguist-detectable=true
*,fe1 gitlab-language=make linguist-language=make linguist-detectable=true
This diff is collapsed.
Click to expand it.
MakeROM,fe1
deleted
100644 → 0
View file @
e0f77ef4
# Makefile for TinyStubs (in ROM)
#
# ***********************************
# *** C h a n g e L i s t ***
# ***********************************
# Date Name Description
# ---- ---- -----------
# 09-Jan-95 AMcC Created
# 24-Jan-95 AMcC Now linked with tboxlib
#
#
# Component specific options:
#
COMPONENT
=
TinyStubs
ROM_MODULE
=
aof.
${COMPONENT}
#
# Export Paths for Messages module
#
RESDIR
=
<resource
$dir
>
.Resources2.
${COMPONENT}
#
# Generic options:
#
AS
=
objasm
CC
=
cc
CMHG
=
cmhg
CP
=
copy
LD
=
link
MKDIR
=
cdir
RM
=
remove
WIPE
=
-wipe
CPFLAGS
=
~cfr~v
WFLAGS
=
~c~v
AFLAGS
=
-depend
!
Depend
-Stamp
-quit
-CloseExec
CFLAGS
=
-c
-depend
!
Depend
${INCLUDES}
-zM
-fah
-zps1
${DFLAGS}
DFLAGS
=
-DROM
INCLUDES
=
-Itbox
:,C:
#
# Libraries
#
ANSILIB
=
CLib:o.ansilib
CLIB
=
CLIB:o.stubs
RLIB
=
RISCOSLIB:o.risc_oslib
ROMCSTUBS
=
RISCOSLIB:o.romcstubs
ABSSYM
=
RISC_OSLib:o.abssym
TBOXLIB
=
tbox:tboxlib
OBJS
=
\
o.ModHdr
\
o.jcomp
\
o.main
#
# Rule patterns
#
.c.o
:
; ${CC} ${CFLAGS} -o $@ $<
.cmhg.o
:
; ${CMHG} -O $@ $<
.s.o
:
; ${AS} ${AFLAGS} -o $@ $<
#
# Main rules:
#
#
rom
:
${ROM_MODULE}
@
echo
${COMPONENT}
: Module built
(
ROM
)
install_rom
:
${ROM_MODULE}
${CP}
${ROM_MODULE}
${INSTDIR}
.
${COMPONENT}
${CPFLAGS}
@
echo
${COMPONENT}
: Module installed
(
ROM
)
resources
:
Messages
${MKDIR}
${RESDIR}
${CP}
Messages
${RESDIR}
.Messages
${CPFLAGS}
@
echo
${COMPONENT}
: resource files copied to Messages module
clean
:
${WIPE}
o.
*
${WFLAGS}
${WIPE}
aof
${WFLAGS}
${WIPE}
linked
${WFLAGS}
${WIPE}
map
${WFLAGS}
@
echo
${COMPONENT}
: cleaned
${ROM_MODULE}
:
${OBJS} ${TBOXLIB} ${ROMCSTUBS}
${MKDIR}
aof
${LD}
-o
$@
-aof
${OBJS}
${TBOXLIB}
${ROMCSTUBS}
# final link for ROM Image (using given base address)
rom_link
:
${MKDIR}
linked
${MKDIR}
map
${LD}
-o
linked.
${COMPONENT}
-bin
-base
${ADDRESS}
${ROM_MODULE}
${ABSSYM}
\
-map
>
map.
${COMPONENT}
truncate
map.
${COMPONENT}
linked.
${COMPONENT}
${CP}
linked.
${COMPONENT}
${LINKDIR}
.
${COMPONENT}
${CPFLAGS}
@
echo
${COMPONENT}
: rom_link
complete
#---------------------------------------------------------------------------
# Dynamic dependencies:
This diff is collapsed.
Click to expand it.
Makefile,fe1
deleted
100644 → 0
View file @
e0f77ef4
# Copyright 1996 Acorn Computers Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Makefile for TinyStubs (in ROM)
#
# ***********************************
# *** C h a n g e L i s t ***
# ***********************************
# Date Name Description
# ---- ---- -----------
# 09-Jan-95 AMcC Created
# 24-Jan-95 AMcC Now linked with tboxlib
#
#
# Component specific options:
#
COMPONENT
=
TinyStubs
ROM_MODULE
=
aof.
${COMPONENT}
#
# Export Paths for Messages module
#
RESDIR
=
<resource
$dir
>
.Resources2.
${COMPONENT}
#
# Generic options:
#
AS
=
objasm
CC
=
cc
CMHG
=
cmhg
CP
=
copy
LD
=
link
MKDIR
=
cdir
RM
=
remove
WIPE
=
-wipe
CPFLAGS
=
~cfr~v
WFLAGS
=
~c~v
AFLAGS
=
-depend
!
Depend
-Stamp
-quit
-CloseExec
CFLAGS
=
-c
-depend
!
Depend
${INCLUDES}
-zM
-fah
-zps1
${DFLAGS}
DFLAGS
=
-DROM
INCLUDES
=
-Itbox
:,C:
#
# Libraries
#
ANSILIB
=
CLib:o.ansilib
CLIB
=
CLIB:o.stubs
RLIB
=
RISCOSLIB:o.risc_oslib
ROMCSTUBS
=
RISCOSLIB:o.romcstubs
ABSSYM
=
RISC_OSLib:o.abssym
TBOXLIB
=
tbox:tboxlib
OBJS
=
\
o.ModHdr
\
o.jcomp
\
o.main
#
# Rule patterns
#
.c.o
:
; ${CC} ${CFLAGS} -o $@ $<
.cmhg.o
:
; ${CMHG} -O $@ $<
.s.o
:
; ${AS} ${AFLAGS} -o $@ $<
#
# Main rules:
#
#
rom
:
${ROM_MODULE}
@
echo
${COMPONENT}
: Module built
(
ROM
)
install_rom
:
${ROM_MODULE}
${CP}
${ROM_MODULE}
${INSTDIR}
.
${COMPONENT}
${CPFLAGS}
@
echo
${COMPONENT}
: Module installed
(
ROM
)
resources
:
Messages
${MKDIR}
${RESDIR}
${CP}
Messages
${RESDIR}
.Messages
${CPFLAGS}
@
echo
${COMPONENT}
: resource files copied to Messages module
clean
:
${WIPE}
o.
*
${WFLAGS}
${WIPE}
aof
${WFLAGS}
${WIPE}
linked
${WFLAGS}
${WIPE}
map
${WFLAGS}
@
echo
${COMPONENT}
: cleaned
${ROM_MODULE}
:
${OBJS} ${TBOXLIB} ${ROMCSTUBS}
${MKDIR}
aof
${LD}
-o
$@
-aof
${OBJS}
${TBOXLIB}
${ROMCSTUBS}
# final link for ROM Image (using given base address)
rom_link
:
${MKDIR}
linked
${MKDIR}
map
${LD}
-o
linked.
${COMPONENT}
-bin
-base
${ADDRESS}
${ROM_MODULE}
${ABSSYM}
\
-map
>
map.
${COMPONENT}
truncate
map.
${COMPONENT}
linked.
${COMPONENT}
${CP}
linked.
${COMPONENT}
${LINKDIR}
.
${COMPONENT}
${CPFLAGS}
@
echo
${COMPONENT}
: rom_link
complete
#---------------------------------------------------------------------------
# Dynamic dependencies:
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment