#!/bin/sh
#
# Create HTML and PDF output for Senior Project
# One argument: Markdown source with no extension
# H. Conrad Cunningham
# Revised: 2018-05-22
#
# course index
./makenotoc csci487
chmod 644 csci487.md csci487.html csci487.tex csci487.pdf
# syllabus
./makenotoc 487syl_sp18
chmod 644 487syl_sp18.md 487syl_sp18.html 487syl_sp18.tex 487syl_sp18.pdf
# schedule
./makenotoc 487schedule
chmod 644 487schedule.md 487schedule.html 487schedule.tex 487schedule.pdf
# assignments
./maketoc 487assignments
chmod 644 487assignments.md 487assignments.html 487assignments.tex 487assignments.pdf
# professional conduct
./makenotoc 487profConduct
chmod 644 487profConduct.md 487profConduct.html 487profConduct.tex 487profConduct.pdf# professional conduct
# grading sheet
./makenotoc GradingSheet
chmod 644 GradingSheet.md GradingSheet.html GradingSheet.tex GradingSheet.pdf
# Postmortem comments from Spring 2018
./makenotoc POSTMORTEM
chmod 644 POSTMORTEM.md POSTMORTEM.html POSTMORTEM.tex POSTMORTEM.pdf


