simplify file lists
This commit is contained in:
parent
645424a7d8
commit
8e5d30d372
1 changed files with 4 additions and 11 deletions
15
Makefile
15
Makefile
|
@ -16,18 +16,11 @@ MAKEPAGES := $(TMPDIR)/make-pages
|
|||
|
||||
YAMLS != find -L $(DATADIR) -name $(INFONAME)
|
||||
|
||||
TSCRIPTS != find script -name '*.ts'
|
||||
STYLES != find style -name '*.css'
|
||||
STYLESVGS != find style -name '*.svg'
|
||||
STYLEPNGS != find style -name '*.png'
|
||||
TSCRIPTS != find script -name '*.ts'
|
||||
STYLES != find style -type f
|
||||
FONTS != find fonts -type f
|
||||
|
||||
|
||||
FONTS != find fonts \
|
||||
-iname '*.eot' -or -iname '*.svg' -or \
|
||||
-iname '*.ttf' -or -iname '*.woff' -or \
|
||||
-iname '*.woff2' -or -iname '*.css'
|
||||
|
||||
STATIC = $(STYLES) $(STYLEPNGS) $(STYLESVGS) $(FONTS)
|
||||
STATIC = $(STYLES) $(FONTS)
|
||||
BSTATIC = $(patsubst %,$(BUILDDIR)/%,$(STATIC))
|
||||
BSCRIPTS = $(patsubst %.ts,$(BUILDDIR)/%.js,$(TSCRIPTS))
|
||||
|
||||
|
|
Loading…
Reference in a new issue