tagoh@xxxxxxxxxxxxxxxxxxxxxx (Akira TAGOH) writes: > $< isn't supported in BSD make say. Yes, it is -- e.g. on FreeBSD's make and Debian's pmake: $ cat Makefile .SUFFIXES: .foo .bar .foo.bar: cat $< $< >$@ $ make hello.bar cat hello.foo hello.foo >hello.bar > .sgml.txt: $(DOCS_DEPS) > - -rm $@ > - $(AM_V_GEN) $(DOC2TXT) $< > + $(AM_V_GEN) $(RM) $@; \ > + $(DOC2TXT) $*.sgml That rule's wrong in GNU Make as well -- suffix rules aren't allowed to have additional prerequisites (see the "Old-Fashioned Suffix Rules" section of the manual). Thanks, -- Adam Sampson <ats@xxxxxxxxx> <http://offog.org/> _______________________________________________ Fontconfig mailing list Fontconfig@xxxxxxxxxxxxxxxxxxxxx http://lists.freedesktop.org/mailman/listinfo/fontconfig