22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
llc --march=$(target) $<
static/%.svg.clean: static/%.svg
svgcleaner $< $@
static/%.webp: static/%.png
cwebp -q 90 $< -o $@
static/%.png: static/%.svg
inkscape -f $< -C -d 180 -e $@
static/%.css: static/%.scss
sassc -t compressed $< $@
clean:
rm parsav parsav.o $(images) $(styles)
install: parsav parsavd
|
|
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
llc --march=$(target) $<
static/%.svg.clean: static/%.svg
svgcleaner $< $@
static/%.webp: static/%.png
cwebp -q 90 $< -o $@
static/%.png: static/%.svg
inkscape -C -d 180 -o $@ $<
static/%.css: static/%.scss
sassc -t compressed $< $@
clean:
rm parsav parsav.o $(images) $(styles)
install: parsav parsavd
|