From c5897a8f8170a53082079b1868003f8331490938 Mon Sep 17 00:00:00 2001 From: ceriel Date: Thu, 29 Jan 1987 19:37:49 +0000 Subject: [PATCH] Initial revision --- mach/m68020/libcc/Makefile | 37 ++++++++++++++++++++++++++++++++++++ mach/m68020/libcc/compmodule | 6 ++++++ mach/m68020/libpc/Makefile | 20 +++++++++++++++++++ mach/m68020/libpc/compmodule | 6 ++++++ 4 files changed, 69 insertions(+) create mode 100644 mach/m68020/libcc/Makefile create mode 100755 mach/m68020/libcc/compmodule create mode 100644 mach/m68020/libpc/Makefile create mode 100755 mach/m68020/libpc/compmodule diff --git a/mach/m68020/libcc/Makefile b/mach/m68020/libcc/Makefile new file mode 100644 index 000000000..3d7679782 --- /dev/null +++ b/mach/m68020/libcc/Makefile @@ -0,0 +1,37 @@ +MAKEFILE=../../proto/libg/Makefile +MACHDEF="MACH=m68020 -DNOFLOAT" "SUF=o" "ASAR=aal" +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 + +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/m68020/libcc/compmodule b/mach/m68020/libcc/compmodule new file mode 100755 index 000000000..6327cb991 --- /dev/null +++ b/mach/m68020/libcc/compmodule @@ -0,0 +1,6 @@ +if ${MACH?} -I../../../h ${MACHFL?} $1 1>&2 +then + echo `basename $1 $2`.o +else + exit 1 +fi diff --git a/mach/m68020/libpc/Makefile b/mach/m68020/libpc/Makefile new file mode 100644 index 000000000..033df6b3f --- /dev/null +++ b/mach/m68020/libpc/Makefile @@ -0,0 +1,20 @@ +MAKEFILE=../../proto/libg/Makefile +MACHDEF="MACH=m68020 -DNOFLOAT" "SUF=o" "ASAR=aal" +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/m68020/libpc/compmodule b/mach/m68020/libpc/compmodule new file mode 100755 index 000000000..6327cb991 --- /dev/null +++ b/mach/m68020/libpc/compmodule @@ -0,0 +1,6 @@ +if ${MACH?} -I../../../h ${MACHFL?} $1 1>&2 +then + echo `basename $1 $2`.o +else + exit 1 +fi -- 2.34.1