22
by mattgiuca
notes/timeline.txt: Added spacing so it compiles nicely with Markdown (sorry |
1 |
ALLHTML = architecture.html execution.html imports.html misc.html subversion.html timeline.html |
18
by mattgiuca
design notes: Created a Makefile to convert the Markdown notes into HTML. |
2 |
|
3 |
all: ${ALLHTML} |
|
4 |
||
5 |
clean: |
|
6 |
rm -f ${ALLHTML} |
|
7 |
||
8 |
%.html: %.txt |
|
9 |
markdown < $< > $@
|
|
10 |