* Makefile.am: Use a temporary file to build chew.

* Makefile.in: Regenerated.
This commit is contained in:
Daniel Jacobowitz 2005-05-09 21:13:56 +00:00
parent 7de2c9aabd
commit dbdb27ec2d
3 changed files with 15 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2005-05-09 Daniel Jacobowitz <dan@codesourcery.com>
* Makefile.am: Use a temporary file to build chew.
* Makefile.in: Regenerated.
2005-05-04 Nick Clifton <nickc@redhat.com>
* chew.c: Update the address and phone number of the FSF

View File

@ -57,8 +57,11 @@ MKDOC = chew$(EXEEXT_FOR_BUILD)
INCLUDES = -I.. -I$(srcdir)/.. -I$(srcdir)/../../include \
-I$(srcdir)/../../intl -I../../intl
$(MKDOC): chew.o
$(CC_FOR_BUILD) -o $(MKDOC) chew.o $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD)
$(MKDOC): $(srcdir)/chew.c
$(CC_FOR_BUILD) -o chew.$$$$ $(srcdir)/chew.c \
$(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) $(H_CFLAGS) \
$(INCLUDES); \
$(SHELL) $(srcdir)/../../move-if-change chew.$$$$ $(MKDOC)
chew.o: chew.c
$(CC_FOR_BUILD) -c $(INCLUDES) $(H_CFLAGS) $(CFLAGS_FOR_BUILD) $(srcdir)/chew.c

View File

@ -586,8 +586,11 @@ uninstall-am:
uninstall uninstall-am uninstall-info-am
$(MKDOC): chew.o
$(CC_FOR_BUILD) -o $(MKDOC) chew.o $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD)
$(MKDOC): $(srcdir)/chew.c
$(CC_FOR_BUILD) -o chew.$$$$ $(srcdir)/chew.c \
$(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) $(H_CFLAGS) \
$(INCLUDES); \
$(SHELL) $(srcdir)/../../move-if-change chew.$$$$ $(MKDOC)
chew.o: chew.c
$(CC_FOR_BUILD) -c $(INCLUDES) $(H_CFLAGS) $(CFLAGS_FOR_BUILD) $(srcdir)/chew.c