diff options
author | Jonas Smedegaard <dr@jones.dk> | 2012-03-01 01:01:36 +0100 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2021-03-25 01:57:28 +0100 |
commit | 06a1ae9ea3d65e14f84b2780ea963d33541a313d (patch) | |
tree | 4ed8d355fedc76fbe3347fc50f654b331746db48 | |
parent | fcc9a4f90f95d351bb71f01e72d6228182fea587 (diff) |
Separate defaults from options (the latter applied last, overriding custom settings), and extend with more defaults and options.
-rw-r--r-- | include.mk | 21 |
1 files changed, 16 insertions, 5 deletions
@@ -1,6 +1,17 @@ +IKIWIKI_SHARED_DEFAULTS ?= \ + --plugin goodstuff \ + --plugin underlay \ + --plugin theme \ + --set theme=goab \ + --plugin h1title \ + --plugin favicon \ + --plugin typography \ + --set typographyattributes=ie \ + --set exclude='^.*\.(rb|scss)$$' \ + IKIWIKI_SHARED_OPTIONS ?= \ - --templatedir '$(CURDIR)/shared/templates' \ - --set underlaydirbase='$(CURDIR)/shared' \ - --underlaydir '$(CURDIR)/shared/basewiki' \ - --libdir '$(CURDIR)/shared/perl' \ - --set exclude='^.*\.(rb|scss)$$' + --templatedir '$(CURDIR)/shared/templates' \ + --set underlaydirbase='$(CURDIR)/shared' \ + --underlaydir '$(CURDIR)/shared/basewiki' \ + --libdir '$(CURDIR)/shared/perl' \ + --set-yaml add_underlays='- $(CURDIR)/styling' \ |