Initial revision
This commit is contained in:
parent
3df42a584c
commit
4ff7e05f7e
6 changed files with 83 additions and 0 deletions
20
mach/m68k4/libbc/Makefile
Normal file
20
mach/m68k4/libbc/Makefile
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
MAKEFILE=../../proto/libg/Makefile
|
||||||
|
MACHDEF="MACH=m68k4" "SUF=s"
|
||||||
|
BCDEF="PREF=bc" "SUB=" "SRC=lang/basic/lib"
|
||||||
|
|
||||||
|
install:
|
||||||
|
make -f $(MAKEFILE) $(BCDEF) $(MACHDEF) tailcp
|
||||||
|
|
||||||
|
cmp:
|
||||||
|
make -f $(MAKEFILE) $(BCDEF) $(MACHDEF) tail
|
||||||
|
-../../compare head_bc
|
||||||
|
-../../compare tail_bc
|
||||||
|
|
||||||
|
clean:
|
||||||
|
-rm -f *.old *.[ce$(SUF)] tail* head*
|
||||||
|
|
||||||
|
opr:
|
||||||
|
make pr | opr
|
||||||
|
|
||||||
|
pr:
|
||||||
|
@pr Makefile
|
2
mach/m68k4/libbc/compmodule
Executable file
2
mach/m68k4/libbc/compmodule
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
${MACH?} -I../../../h ${MACHFL?} $1 1>&2
|
||||||
|
echo `basename $1 $2`.s
|
37
mach/m68k4/libcc/Makefile
Normal file
37
mach/m68k4/libcc/Makefile
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
MAKEFILE=../../proto/libg/Makefile
|
||||||
|
MACHDEF="MACH=m68k4" "SUF=s"
|
||||||
|
STDIO="PREF=cc" "SUB=.1s" "SRC=lang/cem/libcc/stdio"
|
||||||
|
GEN="PREF=cc" "SUB=.2g" "SRC=lang/cem/libcc/gen"
|
||||||
|
MON="PREF=mon" "SRC=lang/cem/libcc/mon"
|
||||||
|
|
||||||
|
install: cpstdio cpgen
|
||||||
|
|
||||||
|
cpstdio:
|
||||||
|
make -f $(MAKEFILE) $(STDIO) $(MACHDEF) tailcp
|
||||||
|
cpgen:
|
||||||
|
make -f $(MAKEFILE) $(GEN) $(MACHDEF) cp
|
||||||
|
cpmon:
|
||||||
|
make -f $(MAKEFILE) $(MON) $(MACHDEF) tailcp
|
||||||
|
|
||||||
|
cmp: cmpstdio cmpgen cmpmon
|
||||||
|
|
||||||
|
cmpstdio:
|
||||||
|
make -f $(MAKEFILE) $(STDIO) $(MACHDEF) tail
|
||||||
|
-../../compare tail_cc.1s
|
||||||
|
cmpgen:
|
||||||
|
make -f $(MAKEFILE) $(GEN) $(MACHDEF) head
|
||||||
|
-../../compare head_cc
|
||||||
|
make -f $(MAKEFILE) $(GEN) $(MACHDEF) tail
|
||||||
|
-../../compare tail_cc.2g
|
||||||
|
cmpmon:
|
||||||
|
make -f $(MAKEFILE) $(MON) $(MACHDEF) tail
|
||||||
|
-../../compare tail_mon
|
||||||
|
|
||||||
|
clean:
|
||||||
|
-rm -f *.old *.[ce$(SUF)] tail* head*
|
||||||
|
|
||||||
|
opr:
|
||||||
|
make pr | opr
|
||||||
|
|
||||||
|
pr:
|
||||||
|
@pr Makefile
|
2
mach/m68k4/libcc/compmodule
Executable file
2
mach/m68k4/libcc/compmodule
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
${MACH?} -I../../../h ${MACHFL?} $1 1>&2
|
||||||
|
echo `basename $1 $2`.s
|
20
mach/m68k4/libpc/Makefile
Normal file
20
mach/m68k4/libpc/Makefile
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
MAKEFILE=../../proto/libg/Makefile
|
||||||
|
MACHDEF="MACH=m68k4" "SUF=s"
|
||||||
|
PCDEF="PREF=pc" "SUB=" "SRC=lang/pc/libpc"
|
||||||
|
|
||||||
|
install:
|
||||||
|
make -f $(MAKEFILE) $(PCDEF) $(MACHDEF) cp
|
||||||
|
|
||||||
|
cmp:
|
||||||
|
make -f $(MAKEFILE) $(PCDEF) $(MACHDEF) all
|
||||||
|
-../../compare head_pc
|
||||||
|
-../../compare tail_pc
|
||||||
|
|
||||||
|
clean:
|
||||||
|
-rm -f *.old *.[ce$(SUF)] tail* head*
|
||||||
|
|
||||||
|
opr:
|
||||||
|
make pr | opr
|
||||||
|
|
||||||
|
pr:
|
||||||
|
@pr Makefile
|
2
mach/m68k4/libpc/compmodule
Executable file
2
mach/m68k4/libpc/compmodule
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
${MACH?} -I../../../h ${MACHFL?} $1 1>&2
|
||||||
|
echo `basename $1 $2`.s
|
Loading…
Reference in a new issue