First checkin, base point for development

+ docu-converter
+ some python source files
+ Makefile

Change-Id: I055522c2feff9b72fc4bc88d6663642c78693fe8
This commit is contained in:
Enrico Faulhaber
2016-06-13 11:46:45 +02:00
parent 8152eab7c9
commit b52c2d7a60
14 changed files with 802 additions and 0 deletions

15
Makefile Normal file
View File

@ -0,0 +1,15 @@
.PHONY: all doc clean
all: clean doc
clean:
@echo "cleaning pyc files"
@find . -name '*.pyc' -delete
@echo "cleaning html tree"
@rm -rf html
@mkdir html
doc: doc/*.md
@echo "Generating html tree"
@bin/make_doc.py