Fb2RSS

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

commit 287b6cde791ece209b5603a8ffab3906861b548b
parent 52a717c6ead90270a086432ad6bd410fd154345a
Author: Dominik Schmidt <dominik@schm1dt.ch>
Date:   Wed, 12 Dec 2018 15:45:00 +0100

Add some spaces to the makefile

Diffstat:
Makefile | 15+++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/Makefile b/Makefile @@ -4,14 +4,17 @@ IOPTS=$(OPTS) -IDRSS/ -IDRSS/kxml/source/ -Istandardpaths/source/ all: Fb2RSS captcha -Fb2RSS: fbstream.o Fb2RSS.o DRSS/drss.a standardpaths/libstandardpaths.a - $(DMD) $(IOPTS) $^ -of$@ -captcha: captcha.o fbstream.o DRSS/drss.a standardpaths/libstandardpaths.a - $(DMD) $(IOPTS) $^ -of$@ +Fb2RSS: fbstream.o Fb2RSS.o DRSS/drss.a standardpaths/source/standardpaths.d + $(DMD) $(IOPTS) -of$@ $^ + +captcha: standardpaths/libstandardpaths.a captcha.o fbstream.o DRSS/drss.a + $(DMD) $(IOPTS) -of$@ $^ + standardpaths/libstandardpaths.a: standardpaths/source/standardpaths.o - $(DMD) $(IOPTS) -lib $^ -of$@ + $(DMD) $(IOPTS) -lib -of$@ $^ + %.o: %.d - $(DMD) $(IOPTS) -c $< -of$@ + $(DMD) $(IOPTS) -c -of$@ $< .PHONY: DRSS/drss.a: cd DRSS/; make DMD="$(DMD)" drss.a