aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2023-03-12 15:12:56 +0900
committernsfisis <nsfisis@gmail.com>2023-03-12 17:15:04 +0900
commit4f55a90a0408ec59812f1de63daecbd42c1d5084 (patch)
treedce34e8e9df075bfbfffe0c6f92c6f3dd21d4b54 /Makefile
parent0caa2309f6b7507333284eb632c8728e76747277 (diff)
downloadphpstudy-150-slides-4f55a90a0408ec59812f1de63daecbd42c1d5084.tar.gz
phpstudy-150-slides-4f55a90a0408ec59812f1de63daecbd42c1d5084.tar.zst
phpstudy-150-slides-4f55a90a0408ec59812f1de63daecbd42c1d5084.zip
スライド作成
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..2e45d1a
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,28 @@
+.PHONY: all
+all: slide.pdf
+
+slide.pdf: slide.saty
+ docker run \
+ --rm \
+ --name satysfi \
+ --mount type=bind,src=$$(pwd),dst=/work \
+ satysfi \
+ satysfi slide.saty
+
+.PHONY: shell
+shell:
+ docker run \
+ -it \
+ --rm \
+ --name satysfi \
+ --mount type=bind,src=$$(pwd),dst=/work \
+ satysfi \
+ sh
+
+.PHONY: docker
+docker:
+ docker build --tag satysfi .
+
+.PHONY: clean
+clean:
+ rm -f *.pdf *.satysfi-aux