move styles and scripts into directories

This commit is contained in:
Rhiannon Morris 2024-09-22 21:39:06 +02:00
parent 7341f49b5a
commit 28eb19ff41
8 changed files with 33 additions and 33 deletions

View file

@ -1,10 +1,10 @@
CSS = $(wildcard *.css) $(shell find fonts -type f)
CSS = $(wildcard style/*.css) $(shell find fonts -type f)
PAGES = index.html pubkey.txt
MEDIA = \
$(wildcard media/*.png) $(wildcard media/*.gif) $(wildcard media/*.webp) \
$(wildcard media/flags/*) $(wildcard media/buttons/*) \
$(wildcard media/icons/*) $(wildcard media/bg/*) 8831.png 8831-quox.png
SCRIPTS = $(patsubst %.ts,%.js,$(wildcard *.ts))
SCRIPTS = $(patsubst %.ts,%.js,$(wildcard script/*.ts))
MISC = $(shell find .well-known -type f)
ALL = $(CSS) $(PAGES) $(MEDIA) $(SCRIPTS) $(MISC)