blob: 76cbdb8d59a7e0bda2134f4c7df5e5737b1276c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
|