*** empty log message ***
This commit is contained in:
parent
3ce0d62f83
commit
e2ab98dea0
|
@ -17,11 +17,11 @@ compare: all
|
|||
em_code.3: em_code.3X
|
||||
tbl < em_code.3X > em_code.3
|
||||
|
||||
libeme.a: make.sh e/em_private.h e/em.c
|
||||
libeme.a: make.sh e/em_private.h e/em.c e/C_failed.c
|
||||
EMHOME=$(EMHOME); export EMHOME; sh make.sh e
|
||||
-sh -c 'ranlib libeme.a'
|
||||
|
||||
libemk.a: make.sh k/em_private.h k/em.c
|
||||
libemk.a: make.sh k/em_private.h k/em.c k/C_failed.c
|
||||
EMHOME=$(EMHOME); export EMHOME; sh make.sh k
|
||||
-sh -c 'ranlib libemk.a'
|
||||
|
||||
|
|
|
@ -408,13 +408,15 @@ Informatica Rapport IR-81, Vrije Universiteit, Amsterdam, 1983.
|
|||
.SH DIAGNOSTICS
|
||||
.I C_open
|
||||
returns 1 if the open is successful and 0 if not.
|
||||
The other routines do not give any information about their completion.
|
||||
.PP
|
||||
When a write fails, the routine
|
||||
.I C_failed
|
||||
is called. The user can override its default definition by supplying his
|
||||
own. The default just gives an error message and quits.
|
||||
.SH BUGS
|
||||
.IP \(bu
|
||||
Feel free to report them to the author.
|
||||
.IP \(bu
|
||||
It is not possible to indicate that the argument of
|
||||
.B C_con_cst ()
|
||||
must be seen as an unsigned value.
|
||||
.SH AUTHOR
|
||||
Erik Baalbergen <erikb@vu44.UUCP>
|
||||
.PP
|
||||
.I C_failed
|
||||
is never called when generating readable EM code.
|
||||
|
|
|
@ -41,6 +41,7 @@ rm -f *.o
|
|||
.
|
||||
$a
|
||||
cc -c -O -I$1 -I$EMHOME/modules/h -I$EMHOME/h $1/em.c
|
||||
cc -c -O -I$1 -I$EMHOME/modules/h -I$EMHOME/h $1/C_failed.c
|
||||
mv em.o em$1.o
|
||||
rm -f libem$1.a
|
||||
ar rc libem$1.a *.o
|
||||
|
|
Loading…
Reference in a new issue