all:
@echo "Give me something to make."
+# for f in $(find -name '*.mdwn' -type f); do python -m markdown $f > ${f%mdwn}html; done
+# todo: edit below command so it translates ALL markdown files. use above command instead until then.
wikipages:
-for f in $(find -name '*.mdwn' -type f); do \
- python -m markdown $f > ${f%mdwn}html; \
- fi \
+ for dir in fun getting-around raffle safe-space-policy speaker-release sponsors volunteer; do \
+ if [ -f $$dir/index.mdwn ] ; then \
+ python -m markdown $$dir/index.mdwn > $$dir/index.html ; \
+ fi \
done
speakers: