Initial commit with makefile, hello world, and naming convention

This commit is contained in:
2024-06-19 14:56:47 -07:00
commit 7bc8e8bfb2
4 changed files with 27 additions and 0 deletions

9
makefile Normal file
View File

@ -0,0 +1,9 @@
FORMAT = svg
IN = src
OUT = output/$(FORMAT)
VPATH = $(IN):$(OUT)
%.svg: %.asy
mkdir -p $(OUT)
asy -f $(FORMAT) $< -o $(OUT)/$*