lout-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Makefile redux


From: DaviD W. Sanderson
Subject: Makefile redux
Date: Wed, 14 Dec 1994 20:32:07 -0600

The following slightly modified version will remove the temporary file
even if you kill the make with ^C.

----------------------------------------------------------------------
SHELL=/bin/sh

doc:
        ifile=all;                              \
        ofile=all.ps;                           \
        tfile=/tmp/xx$$$$;                      \
        trap "rm -f $$tfile" 0 1 2 3 15;        \
        echo xx > $$tfile;      \
        while   [ -s $$tfile ]; \
        do      echo "lout $$ifile >$$ofile";                   \
                lout $$ifile 2>&1 >$$ofile | tee $$tfile;       \
        done
----------------------------------------------------------------------


reply via email to

[Prev in Thread] Current Thread [Next in Thread]