mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-31 09:20:23 +02:00
Replaced "$<" in non-pattern rules with its value. This is to support
makes that know about "$<" only in pattern rules, like Sun's make.
This commit is contained in:
parent
e7d58d262e
commit
53864e11e3
1 changed files with 5 additions and 5 deletions
|
@ -41,9 +41,9 @@ guile_filter_doc_snarfage_SOURCES = c-tokenize.c
|
||||||
## For some reason, OBJEXT does not include the dot
|
## For some reason, OBJEXT does not include the dot
|
||||||
c-tokenize.$(OBJEXT): c-tokenize.c
|
c-tokenize.$(OBJEXT): c-tokenize.c
|
||||||
if [ "$(cross_compiling)" = "yes" ]; then \
|
if [ "$(cross_compiling)" = "yes" ]; then \
|
||||||
$(CC_FOR_BUILD) -c -o $@ $<; \
|
$(CC_FOR_BUILD) -c -o $@ c-tokenize.c; \
|
||||||
else \
|
else \
|
||||||
$(COMPILE) -c -o $@ $<; \
|
$(COMPILE) -c -o $@ c-tokenize.c; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
## Override default rule; this should run on BUILD host.
|
## Override default rule; this should run on BUILD host.
|
||||||
|
@ -247,17 +247,17 @@ if HAVE_MAKEINFO
|
||||||
|
|
||||||
guile-procedures.txt: guile-procedures.texi
|
guile-procedures.txt: guile-procedures.texi
|
||||||
rm -f $@
|
rm -f $@
|
||||||
makeinfo --force -o $@ $< || test -f $@
|
makeinfo --force -o $@ guile-procedures.texi || test -f $@
|
||||||
|
|
||||||
else
|
else
|
||||||
|
|
||||||
guile-procedures.txt: guile-procedures.texi
|
guile-procedures.txt: guile-procedures.texi
|
||||||
cp $< $@
|
cp guile-procedures.texi $@
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
c-tokenize.c: c-tokenize.lex
|
c-tokenize.c: c-tokenize.lex
|
||||||
flex -t $< > $@ || { rm $@; false; }
|
flex -t c-tokenize.lex > $@ || { rm $@; false; }
|
||||||
|
|
||||||
schemelibdir = $(pkgdatadir)/$(VERSION)
|
schemelibdir = $(pkgdatadir)/$(VERSION)
|
||||||
schemelib_DATA = guile-procedures.txt
|
schemelib_DATA = guile-procedures.txt
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue