1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-23 04:30:24 +02:00

18980: new zsh/system module

This commit is contained in:
Peter Stephenson 2003-08-30 19:06:06 +00:00
parent c016b2dcdc
commit c9c5f9da93
11 changed files with 680 additions and 3 deletions

27
Src/Modules/system.mdd Normal file
View file

@ -0,0 +1,27 @@
name=zsh/system
link=dynamic
load=no
autobins="sysread syswrite syserror"
autoparams="errnos"
objects="system.o errnames.o"
headers="errcount.h"
:<<\Make
errnames.c: errnames1.awk errnames2.awk $(dir_top)/config.h @ERRNO_H@
if [ x@ERRNO_H@ = x ]; then \
touch errtmp.out; \
else \
$(AWK) -f $(sdir)/errnames1.awk @ERRNO_H@ >errtmp.c; \
$(CPP) errtmp.c >errtmp.out; \
fi
$(AWK) -f $(sdir)/errnames2.awk errtmp.out > $@
rm -f errtmp.c errtmp.out
errcount.h: errnames.c
grep 'define.*ERRCOUNT' errnames.c > $@
Make