New installation mechanism
This commit is contained in:
parent
ce87955d7b
commit
b520bc40a5
|
@ -1,2 +1 @@
|
|||
Makefile
|
||||
table
|
||||
|
|
|
@ -1,14 +1,11 @@
|
|||
Action
|
||||
as
|
||||
cv
|
||||
libbc
|
||||
libcc
|
||||
libem
|
||||
libpc
|
||||
libend
|
||||
libsys
|
||||
ncg
|
||||
liboc
|
||||
libfp
|
||||
libm2
|
||||
top
|
||||
ce
|
||||
mach_params
|
||||
|
|
|
@ -14,27 +14,15 @@ end
|
|||
name "M68020 EM library"
|
||||
dir libem
|
||||
end
|
||||
name "M68020 system call library"
|
||||
dir libsys
|
||||
end
|
||||
name "M68020 C libraries"
|
||||
dir libcc
|
||||
end
|
||||
name "M68020 Pascal library"
|
||||
dir libpc
|
||||
end
|
||||
name "M68020 Basic library"
|
||||
dir libbc
|
||||
end
|
||||
name "M68020 Occam library"
|
||||
dir liboc
|
||||
end
|
||||
name "M68020 Modula-2 library"
|
||||
dir libm2
|
||||
end
|
||||
name "M68020 VME131 System V/68 R2V2.1 conversion"
|
||||
dir cv
|
||||
name "M68020 etext,edata,end library"
|
||||
dir libend
|
||||
end
|
||||
name "M68020 floating point library"
|
||||
dir libfp
|
||||
end
|
||||
name "M68020 system call library"
|
||||
dir libsys
|
||||
end
|
||||
name "M68020 VME131 System V/68 R2V2.1 conversion"
|
||||
dir cv
|
||||
end
|
||||
|
|
2
mach/m68020/libend/.distr
Normal file
2
mach/m68020/libend/.distr
Normal file
|
@ -0,0 +1,2 @@
|
|||
LIST
|
||||
end_s.a
|
5
mach/m68020/libend/LIST
Normal file
5
mach/m68020/libend/LIST
Normal file
|
@ -0,0 +1,5 @@
|
|||
end_s.a
|
||||
edata.s
|
||||
em_end.s
|
||||
end.s
|
||||
etext.s
|
9
mach/m68020/libend/edata.s
Normal file
9
mach/m68020/libend/edata.s
Normal file
|
@ -0,0 +1,9 @@
|
|||
.sect .text
|
||||
.sect .rom
|
||||
.sect .data
|
||||
.sect .bss
|
||||
.define _edata
|
||||
.sect .data
|
||||
.align 4
|
||||
.sect .data
|
||||
_edata:
|
22
mach/m68020/libend/em_end.s
Normal file
22
mach/m68020/libend/em_end.s
Normal file
|
@ -0,0 +1,22 @@
|
|||
.sect .text
|
||||
.sect .rom
|
||||
.sect .data
|
||||
.sect .bss
|
||||
.define endtext,enddata,endbss,__end
|
||||
.sect .text
|
||||
.align 4
|
||||
.sect .rom
|
||||
.align 4
|
||||
.sect .data
|
||||
.align 4
|
||||
.sect .bss
|
||||
.align 4
|
||||
.sect .end ! only for declaration of _end, __end and endbss.
|
||||
|
||||
.sect .text
|
||||
endtext:
|
||||
.sect .data
|
||||
enddata:
|
||||
.sect .end
|
||||
__end:
|
||||
endbss:
|
7
mach/m68020/libend/end.s
Normal file
7
mach/m68020/libend/end.s
Normal file
|
@ -0,0 +1,7 @@
|
|||
.sect .text
|
||||
.sect .rom
|
||||
.sect .data
|
||||
.sect .bss
|
||||
.define _end
|
||||
.sect .end ! only for declaration of _end, __end and endbss.
|
||||
_end:
|
9
mach/m68020/libend/etext.s
Normal file
9
mach/m68020/libend/etext.s
Normal file
|
@ -0,0 +1,9 @@
|
|||
.sect .text
|
||||
.sect .rom
|
||||
.sect .data
|
||||
.sect .bss
|
||||
.define _etext
|
||||
.sect .text
|
||||
.align 4
|
||||
.sect .text
|
||||
_etext:
|
|
@ -1,2 +1 @@
|
|||
Makefile
|
||||
byte_order.h
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
LIST
|
||||
Makefile
|
||||
README
|
||||
compmodule
|
||||
head_em.s
|
||||
libmon_s.a
|
||||
|
|
4
mach/m68020/mach_params
Normal file
4
mach/m68020/mach_params
Normal file
|
@ -0,0 +1,4 @@
|
|||
MACH=m68020
|
||||
SUF=o
|
||||
ASAR=aal
|
||||
RANLIB=:
|
|
@ -1,2 +1 @@
|
|||
Makefile
|
||||
table
|
||||
|
|
Loading…
Reference in a new issue