aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2023-06-19 00:28:41 +0900
committernsfisis <nsfisis@gmail.com>2023-06-19 00:28:41 +0900
commit99918594e3ed18a5288980865558386709511577 (patch)
tree1c79ba750275ce1d15ba228ab063eace29cb21ca /Makefile
parent87cb692686638e302713ebb93bf232f6b5425c0b (diff)
downloadphpconfuk2023-eve-slide-99918594e3ed18a5288980865558386709511577.tar.gz
phpconfuk2023-eve-slide-99918594e3ed18a5288980865558386709511577.tar.zst
phpconfuk2023-eve-slide-99918594e3ed18a5288980865558386709511577.zip
空のスライドを追加
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile35
1 files changed, 35 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..0a2d6b9
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,35 @@
+.PHONY: all
+all: build
+
+# Build slide PDF.
+.PHONY: build
+build: slide.pdf
+
+slide.pdf: slide.saty
+ docker run \
+ --rm \
+ --name satysfi \
+ --mount type=bind,src=$$(pwd),dst=/work \
+ satysfi \
+ satysfi slide.saty
+
+# Enter Docker shell.
+.PHONY: shell
+shell:
+ docker run \
+ -it \
+ --rm \
+ --name satysfi \
+ --mount type=bind,src=$$(pwd),dst=/work \
+ satysfi \
+ sh
+
+# Build Docker container.
+.PHONY: docker
+docker:
+ docker build --tag satysfi .
+
+# Clean all artifacts.
+.PHONY: clean
+clean:
+ rm -f *.pdf *.satysfi-aux