Work around MinGW Make's broken built-in link rule.

This commit is contained in:
Markus Armbruster 2006-01-20 07:48:10 +00:00
parent 4dfcdfeb4b
commit ed6514f7f3

View file

@ -202,6 +202,11 @@ endif
# automatic dependency generation # automatic dependency generation
%: %.c %: %.c
# Work around MinGW Make's broken built-in link rule:
%$(EXEEXT): %.o
$(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
info.nr/%: info/%.t info.nr/%: info/%.t
$(NROFF) -I $(srcdir)/info $(filter %/CRT.MAC, $^) $< | $(AWK) -f $(filter %/Blank.awk, $^) >$@ $(NROFF) -I $(srcdir)/info $(filter %/CRT.MAC, $^) $< | $(AWK) -f $(filter %/Blank.awk, $^) >$@
# FIXME AT&T nroff doesn't grok -I # FIXME AT&T nroff doesn't grok -I