From 47d61c3ae93aef54c493af1ecb5d44842e2ea7cd Mon Sep 17 00:00:00 2001 From: ceriel Date: Mon, 23 Feb 1987 19:47:00 +0000 Subject: [PATCH] Initial revision --- mach/mantra/libcc/Makefile | 38 ++++++++++++++++++++++++++++++++++++ mach/mantra/libcc/compmodule | 6 ++++++ 2 files changed, 44 insertions(+) create mode 100644 mach/mantra/libcc/Makefile create mode 100755 mach/mantra/libcc/compmodule diff --git a/mach/mantra/libcc/Makefile b/mach/mantra/libcc/Makefile new file mode 100644 index 000000000..4d500d2e8 --- /dev/null +++ b/mach/mantra/libcc/Makefile @@ -0,0 +1,38 @@ +SUF=o +MAKEFILE=../../proto/libg/Makefile +MACHDEF="MACH=mantra4" "SUF=$(SUF)" "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/mantra/libcc/compmodule b/mach/mantra/libcc/compmodule new file mode 100755 index 000000000..09b343ad4 --- /dev/null +++ b/mach/mantra/libcc/compmodule @@ -0,0 +1,6 @@ +if ${MACH?} -DUSG -I../../../h ${MACHFL?} $1 1>&2 +then + echo `basename $1 $2`.o +else + exit 1 +fi -- 2.34.1