Initial revision

This commit is contained in:
ceriel 1987-01-29 19:37:49 +00:00
parent bfb89ae937
commit c5897a8f81
4 changed files with 69 additions and 0 deletions

View file

@ -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

6
mach/m68020/libcc/compmodule Executable file
View file

@ -0,0 +1,6 @@
if ${MACH?} -I../../../h ${MACHFL?} $1 1>&2
then
echo `basename $1 $2`.o
else
exit 1
fi

View file

@ -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

6
mach/m68020/libpc/compmodule Executable file
View file

@ -0,0 +1,6 @@
if ${MACH?} -I../../../h ${MACHFL?} $1 1>&2
then
echo `basename $1 $2`.o
else
exit 1
fi