From 6ce1db1f867c545ebdb1afb705580514b356f883 Mon Sep 17 00:00:00 2001
From: Holden Rohrer
Date: Wed, 5 Jan 2022 00:02:12 -0500
Subject: more math stuff
---
li/Makefile | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
create mode 100644 li/Makefile
(limited to 'li/Makefile')
diff --git a/li/Makefile b/li/Makefile
new file mode 100644
index 0000000..76cbdb8
--- /dev/null
+++ b/li/Makefile
@@ -0,0 +1,19 @@
+.POSIX:
+
+final.pdf: matlab_hw.pdf output.pdf
+ pdftk matlab_hw.pdf output.pdf output final.pdf
+
+matlab_hw.pdf: matlab_hw.ps
+ ps2pdf matlab_hw.ps
+
+output.pdf: output.ps
+ ps2pdf output.ps
+
+matlab_hw.ps: matlab_hw.py
+ vim -R matlab_hw.py -c "hardcopy > matlab_hw.ps | q"
+
+output.ps: output.txt
+ vim -R output.txt -c "hardcopy > output.ps | q"
+
+output.txt: matlab_hw.py
+ python3 matlab_hw.py > output.txt
--
cgit