build endian.h via a temporary file so that we don't leave an

incomplete file lying around on interrupted builds.
This commit is contained in:
K. Richard Pixley 1993-02-11 03:15:39 +00:00
parent 733a94e887
commit 7413f20a5e
2 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,9 @@
Wed Feb 10 20:12:27 1993 K. Richard Pixley (rich@ok.cygnus.com)
* Makefile.in (endian.h): build endian.h via a temporary file so
that we don't leave an incomplete file lying around on
interrupted builds.
Mon Feb 8 11:46:06 1993 Steve Chamberlain (sac@thepub.cygnus.com)
* Makefile.in, configure.in: if target isn't supported, build a

View File

@ -93,10 +93,11 @@ clean: $(CLEAN)
install: $(INSTALL)
### build endian.h via a temporary so that interrupted builds will not
### leave an incomplete endian.h lying around.
endian.h: endian
./endian > endian.h
./endian > e.h
mv -f e.h endian.h
### none