1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-02 17:01:19 +02:00
zsh/Src/Builtins/rlimits.mdd

19 lines
510 B
Plaintext
Raw Normal View History

1999-04-15 20:05:38 +02:00
autobins="limit ulimit unlimit"
objects="rlimits.o"
:<<\Make
rlimits.o rlimits..o: rlimits.h
# this file will not be made if limits are unavailable:
# silent so the warning doesn't appear unless necessary
rlimits.h: rlimits.awk @RLIMITS_INC_H@
@echo '$(AWK) -f $(sdir)/rlimits.awk @RLIMITS_INC_H@ > rlimits.h'; \
$(AWK) -f $(sdir)/rlimits.awk @RLIMITS_INC_H@ > rlimits.h || \
echo WARNING: unknown limits: mail rlimits.h to developers
clean-here: clean.rlimits
clean.rlimits:
rm -f rlimits.h
Make