Fb2RSS

A Facebook to RSS conversion tool
git clone git://xatko.vsos.ethz.ch/Fb2RSS.git
Log | Files | Refs | Submodules

commit 8051e2583683904ae2339f3f5ebea5b56ae3463b
parent 80c707b0a7052bff53fa7bdee1874f103e0be9da
Author: Dominik Schmidt <das1993@hotmail.com>
Date:   Thu, 10 Sep 2015 11:38:54 +0200

Makefile: Wrong automatic variable corrected.

$^ is for all prerequisites, $? for all prerequisite newer than the target.

Diffstat:
Makefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -3,7 +3,7 @@ OPTS?=-release -O IOPTS=$(OPTS) -IDRSS/ -IDRSS/kxml/source/ Fb2RSS: fbstream.o Fb2RSS.o DRSS/drss.a - $(DMD) $(IOPTS) $? -of$@ + $(DMD) $(IOPTS) $^ -of$@ %.o: %.d $(DMD) $(IOPTS) -c $< -of$@ .PHONY: