diff --git a/.gitignore b/.gitignore index aeda146..6097620 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ build dist ino.egg-info doc/.build +.*.sw[op] diff --git a/Makefile b/Makefile index 579980b..9b41fac 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ doc: $(MAKE) -f doc/Makefile html install: - python setup.py install --root $(DESTDIR) --prefix $(PREFIX) --exec-prefix $(PREFIX) + env python2 setup.py install --root $(DESTDIR) --prefix $(PREFIX) --exec-prefix $(PREFIX) .PHONY : doc .PHONY : install diff --git a/TODO b/TODO new file mode 100644 index 0000000..6249c1d --- /dev/null +++ b/TODO @@ -0,0 +1,11 @@ +# ino TODO list: + +- Make 'ino build' sensitive to changes all kinds of changes to arguments, so + that whenever, for instance, '--cppflags' changes, the code is + _automatically_ recompiled with the new options (rather than having to + manually invoke 'ino clean' as currently) +- For completeness, add --arflags and --objcopyflags in build.py + * Also create similar flags for all modules, so every program used by ino can + be specified (e.g. for 'ino serial') + +