New installation mechanism

This commit is contained in:
ceriel 1991-09-02 17:27:44 +00:00
parent ce87955d7b
commit b520bc40a5
13 changed files with 68 additions and 30 deletions

View file

@ -1,2 +1 @@
Makefile
table table

View file

@ -1,14 +1,11 @@
Action Action
as as
cv cv
libbc
libcc
libem libem
libpc libend
libsys libsys
ncg ncg
liboc
libfp libfp
libm2
top top
ce ce
mach_params

View file

@ -14,27 +14,15 @@ end
name "M68020 EM library" name "M68020 EM library"
dir libem dir libem
end end
name "M68020 system call library" name "M68020 etext,edata,end library"
dir libsys dir libend
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
end end
name "M68020 floating point library" name "M68020 floating point library"
dir libfp dir libfp
end end
name "M68020 system call library"
dir libsys
end
name "M68020 VME131 System V/68 R2V2.1 conversion"
dir cv
end

View file

@ -0,0 +1,2 @@
LIST
end_s.a

5
mach/m68020/libend/LIST Normal file
View file

@ -0,0 +1,5 @@
end_s.a
edata.s
em_end.s
end.s
etext.s

View file

@ -0,0 +1,9 @@
.sect .text
.sect .rom
.sect .data
.sect .bss
.define _edata
.sect .data
.align 4
.sect .data
_edata:

View 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
View 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:

View file

@ -0,0 +1,9 @@
.sect .text
.sect .rom
.sect .data
.sect .bss
.define _etext
.sect .text
.align 4
.sect .text
_etext:

View file

@ -1,2 +1 @@
Makefile
byte_order.h byte_order.h

View file

@ -1,6 +1,4 @@
LIST LIST
Makefile
README README
compmodule
head_em.s head_em.s
libmon_s.a libmon_s.a

4
mach/m68020/mach_params Normal file
View file

@ -0,0 +1,4 @@
MACH=m68020
SUF=o
ASAR=aal
RANLIB=:

View file

@ -1,2 +1 @@
Makefile
table table