diff options
| author | Mike Wey | 2011-11-18 22:23:52 +0100 |
|---|---|---|
| committer | Mike Wey | 2011-11-18 22:23:52 +0100 |
| commit | f5d4e20d1ec4ee8ccd66b80ab899d55928c1520a (patch) | |
| tree | 151c7fba23ce83186a1d27698d378c612003d665 | |
| parent | 3def606051550fbee11aa5dc92a5c5dced4585b3 (diff) | |
Fix building docs with older versions of GNU Make.
This should fix problems building the documentation using a gnu make
version older than 3.82.
| -rw-r--r-- | GNUmakefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/GNUmakefile b/GNUmakefile index 634fda9..6b5f96f 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -98,12 +98,12 @@ docs: $(DOCS_DMAGICK) ####################################################################### -docs/%.html : dmagick/%.d - $(DC) $(DCFLAGS) docs/dmagick.ddoc $< $(DDOCFLAGS) - docs/c/%.html : dmagick/c/%.d $(DC) $(DCFLAGS) docs/dmagick.ddoc docs/dmagick.c.ddoc $< $(DDOCFLAGS) +docs/%.html : dmagick/%.d + $(DC) $(DCFLAGS) docs/dmagick.ddoc $< $(DDOCFLAGS) + ####################################################################### pkgconfig: DMagick.pc |
