Initial revision

This commit is contained in:
ceriel 1988-10-04 14:27:35 +00:00
parent a54c470fef
commit 366b492174
3 changed files with 38 additions and 0 deletions

2
mach/sun3/liba68s/.distr Normal file
View file

@ -0,0 +1,2 @@
Makefile
compmodule

View file

@ -0,0 +1,22 @@
SUF=o
MAKEFILE=../../proto/libg/Makefile
MACHDEF="MACH=sun3" "SUF=$(SUF)" "ASAR=aal"
A68SDEF="PREF=a68s" "SUB=" "SRC=lang/a68s/liba68s"
install:
make -f $(MAKEFILE) $(A68SDEF) $(MACHDEF) tailcp
all:
make -f $(MAKEFILE) $(A68SDEF) $(MACHDEF) tail
cmp: all
-../../compare tail_a68s
clean:
-rm -f *.old *.[cehsp$(SUF)] tail* head* check??
opr:
make pr | opr
pr:
@pr Makefile

14
mach/sun3/liba68s/compmodule Executable file
View file

@ -0,0 +1,14 @@
HOME=../../..
SFILE=`basename $1`
OFILE=`basename $1 $2`.o
ln $HOME/$SRC/rundecs.p . 2> /dev/null
ln $HOME/$SRC/e.h . 2> /dev/null
ln $1 .
if $HOME/$SRC/make -f $HOME/$SRC/Makefile $OFILE >/dev/tty
then
rm $SFILE
echo $OFILE
else
rm $SFILE
exit 1
fi