*** empty log message ***
This commit is contained in:
parent
9ce25b36c4
commit
93ac463920
1 changed files with 14 additions and 13 deletions
|
@ -1,30 +1,31 @@
|
||||||
# $Header$
|
# $Header$
|
||||||
|
all: head_em.o libmon_o.a
|
||||||
|
|
||||||
install: cp
|
install: cp
|
||||||
|
|
||||||
cp: all
|
cp: all
|
||||||
../../install head_em
|
../../install head_em.o head_em
|
||||||
../../install tail_mon
|
../../install libmon_o.a tail_mon
|
||||||
rm -f head_em tail_mon
|
|
||||||
|
|
||||||
cmp: all
|
cmp: all
|
||||||
-../../compare head_em
|
-../../compare head_em.o head_em
|
||||||
-../../compare tail_mon
|
-../../compare libmon_o.a tail_mon
|
||||||
rm -f head_em tail_mon
|
|
||||||
|
|
||||||
all: head_em tail_mon
|
|
||||||
|
|
||||||
head_em: head_em.s
|
head_em.o: head_em.s
|
||||||
vax4 -I../../../h -c head_em.s ; mv head_em.o head_em
|
vax4 -I../../../h -c head_em.s
|
||||||
|
|
||||||
tail_mon:
|
libmon_o.a: libmon_s.a
|
||||||
ASAR=ar ; export ASAR ;\
|
ASAR=ar ; export ASAR ;\
|
||||||
RANLIB=ranlib ; export RANLIB ;\
|
RANLIB=ranlib ; export RANLIB ;\
|
||||||
march . tail_mon
|
march . libmon_o.a
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f *.o
|
rm -f *.o libmon_o.a
|
||||||
|
|
||||||
opr:
|
opr:
|
||||||
make pr | opr
|
make pr | opr
|
||||||
|
|
||||||
pr:
|
pr:
|
||||||
@pr `pwd`/Makefile `pwd`/head_em.s
|
@pr `pwd`/Makefile `pwd`/head_em.s
|
||||||
@pr -l33 `tail +1 LIST|sort`
|
@arch pv libmon_s.a | pr -h `pwd`/libmon_s.a
|
||||||
|
|
Loading…
Reference in a new issue