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