ANGELF~1.HTM
This commit is contained in:
parent
2387e2fcbd
commit
ec80a72379
13 changed files with 234 additions and 3 deletions
15
Makefile
15
Makefile
|
@ -1,6 +1,6 @@
|
|||
FONTS = $(shell find fonts -type f)
|
||||
CSS = base.css index.css where.css comms.css
|
||||
PAGES = index.html where.html comms.html pubkey.txt
|
||||
CSS = base.css index.css where.css comms.css ANGELF~1.CSS
|
||||
PAGES = index.html where.html comms.html ANGELF~1.HTM pubkey.txt
|
||||
MEDIA = $(patsubst %,media/%, \
|
||||
bg.png bg_2x.png bg_dim.png bg_2x_dim.png snugl.png \
|
||||
mlem.gif mlem_static.png cybre.png donphan.png types.png \
|
||||
|
@ -8,6 +8,10 @@ MEDIA = $(patsubst %,media/%, \
|
|||
comm-examples.png \
|
||||
) \
|
||||
$(wildcard media/*.svg)
|
||||
AFMEDIA = $(patsubst %,NEWFOL~1/%, \
|
||||
GEC.JPG PBRUSH.GIF PROGRAM.GIF QUESTION.GIF MAIL.GIF LOWBATT.GIF \
|
||||
W95FA.otf w95fa.woff w95fa.woff2 \
|
||||
)
|
||||
|
||||
BUILDDIR ?= _build
|
||||
TMPDIR ?= _tmp
|
||||
|
@ -19,7 +23,7 @@ REMOTE_DIR ?= yummy
|
|||
|
||||
all: build
|
||||
|
||||
build: $(patsubst %,$(BUILDDIR)/%,$(FONTS) $(CSS) $(PAGES) $(MEDIA))
|
||||
build: $(patsubst %,$(BUILDDIR)/%,$(FONTS) $(CSS) $(PAGES) $(MEDIA) $(AFMEDIA))
|
||||
|
||||
upload: build
|
||||
@rsync --recursive --partial --progress --copy-links \
|
||||
|
@ -54,6 +58,11 @@ $(BUILDDIR)/%_dim.png: %.png
|
|||
@echo $(notdir $@)
|
||||
@convert -channel A -evaluate Multiply 0.75 $< $@
|
||||
|
||||
$(BUILDDIR)/%.GIF: %.ICO
|
||||
@echo $*.GIF
|
||||
@mkdir -p $(dir $@)
|
||||
@convert '$<[0]' $@
|
||||
|
||||
clean:
|
||||
$(RM) -r $(TMPDIR) $(BUILDDIR)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue