Skip to content

Commit

Permalink
Minor housekeeping
Browse files Browse the repository at this point in the history
Made makefile select 'python2' via env for portability. Added vim
.sw[op] files to .gitignore. Added a TODO list.
  • Loading branch information
jrmcornish committed Aug 4, 2013
1 parent b840475 commit 5893880
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ build
dist
ino.egg-info
doc/.build
.*.sw[op]
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
11 changes: 11 additions & 0 deletions TODO
Original file line number Diff line number Diff line change
@@ -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')

<!-- vim: set ft=markdown: -->

0 comments on commit 5893880

Please sign in to comment.