From 4ff7e05f7e691d10ee0dfdf085405ad8dc6bfe5a Mon Sep 17 00:00:00 2001 From: keie Date: Thu, 7 Feb 1985 17:18:06 +0000 Subject: [PATCH] Initial revision --- mach/m68k4/libbc/Makefile | 20 ++++++++++++++++++++ mach/m68k4/libbc/compmodule | 2 ++ mach/m68k4/libcc/Makefile | 37 +++++++++++++++++++++++++++++++++++++ mach/m68k4/libcc/compmodule | 2 ++ mach/m68k4/libpc/Makefile | 20 ++++++++++++++++++++ mach/m68k4/libpc/compmodule | 2 ++ 6 files changed, 83 insertions(+) create mode 100644 mach/m68k4/libbc/Makefile create mode 100755 mach/m68k4/libbc/compmodule create mode 100644 mach/m68k4/libcc/Makefile create mode 100755 mach/m68k4/libcc/compmodule create mode 100644 mach/m68k4/libpc/Makefile create mode 100755 mach/m68k4/libpc/compmodule diff --git a/mach/m68k4/libbc/Makefile b/mach/m68k4/libbc/Makefile new file mode 100644 index 000000000..6428b15d4 --- /dev/null +++ b/mach/m68k4/libbc/Makefile @@ -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 diff --git a/mach/m68k4/libbc/compmodule b/mach/m68k4/libbc/compmodule new file mode 100755 index 000000000..284613267 --- /dev/null +++ b/mach/m68k4/libbc/compmodule @@ -0,0 +1,2 @@ +${MACH?} -I../../../h ${MACHFL?} $1 1>&2 +echo `basename $1 $2`.s diff --git a/mach/m68k4/libcc/Makefile b/mach/m68k4/libcc/Makefile new file mode 100644 index 000000000..c7f69beaa --- /dev/null +++ b/mach/m68k4/libcc/Makefile @@ -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 diff --git a/mach/m68k4/libcc/compmodule b/mach/m68k4/libcc/compmodule new file mode 100755 index 000000000..284613267 --- /dev/null +++ b/mach/m68k4/libcc/compmodule @@ -0,0 +1,2 @@ +${MACH?} -I../../../h ${MACHFL?} $1 1>&2 +echo `basename $1 $2`.s diff --git a/mach/m68k4/libpc/Makefile b/mach/m68k4/libpc/Makefile new file mode 100644 index 000000000..9f45d5d24 --- /dev/null +++ b/mach/m68k4/libpc/Makefile @@ -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 diff --git a/mach/m68k4/libpc/compmodule b/mach/m68k4/libpc/compmodule new file mode 100755 index 000000000..284613267 --- /dev/null +++ b/mach/m68k4/libpc/compmodule @@ -0,0 +1,2 @@ +${MACH?} -I../../../h ${MACHFL?} $1 1>&2 +echo `basename $1 $2`.s -- 2.34.1