Added files
This commit is contained in:
parent
8322e2d5d3
commit
3e4a2c3dbc
3 changed files with 58 additions and 0 deletions
2
mach/minixST/libcc/.distr
Normal file
2
mach/minixST/libcc/.distr
Normal file
|
@ -0,0 +1,2 @@
|
|||
Makefile
|
||||
compmodule
|
50
mach/minixST/libcc/Makefile
Normal file
50
mach/minixST/libcc/Makefile
Normal file
|
@ -0,0 +1,50 @@
|
|||
SUF=o
|
||||
MAKEFILE=../../proto/libg/Makefile
|
||||
MACHDEF="MACH=minixST" "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"
|
||||
LIBM="PREF=m" "SRC=lang/cem/libcc/math"
|
||||
|
||||
all:
|
||||
make -f $(MAKEFILE) $(STDIO) $(MACHDEF) tail
|
||||
make -f $(MAKEFILE) $(GEN) $(MACHDEF) head
|
||||
make -f $(MAKEFILE) $(GEN) $(MACHDEF) tail
|
||||
make -f $(MAKEFILE) $(LIBM) $(MACHDEF) tail
|
||||
|
||||
install: cpstdio cpgen cplibm
|
||||
|
||||
cpstdio:
|
||||
make -f $(MAKEFILE) $(STDIO) $(MACHDEF) tailcp
|
||||
cpgen:
|
||||
make -f $(MAKEFILE) $(GEN) $(MACHDEF) cp
|
||||
cpmon:
|
||||
make -f $(MAKEFILE) $(MON) $(MACHDEF) tailcp
|
||||
cplibm:
|
||||
make -f $(MAKEFILE) $(LIBM) $(MACHDEF) tailcp
|
||||
|
||||
cmp: cmpstdio cmpgen cmplibm
|
||||
|
||||
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
|
||||
cmplibm:
|
||||
make -f $(MAKEFILE) $(LIBM) $(MACHDEF) tail
|
||||
-../../compare tail_m
|
||||
|
||||
clean:
|
||||
-rm -f *.old *.[ce$(SUF)] tail* head*
|
||||
|
||||
opr:
|
||||
make pr | opr
|
||||
|
||||
pr:
|
||||
@pr Makefile
|
6
mach/minixST/libcc/compmodule
Executable file
6
mach/minixST/libcc/compmodule
Executable file
|
@ -0,0 +1,6 @@
|
|||
if ${MACH?} -I../../../h ${MACHFL?} $1 1>&2
|
||||
then
|
||||
echo `basename $1 $2`.o
|
||||
else
|
||||
exit 1
|
||||
fi
|
Loading…
Reference in a new issue