diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ef25bf1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*~ +*.pyc +*.o +*.so diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e7ded58 --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +all: SourceMe.py + cd gui && $(MAKE) + +SourceMe.py: SourceMe.py.in + sed -e "s,HERE,$(pwd)," < SourceMe.py.in > SourceMe.py diff --git a/SourceMe.py b/SourceMe.py deleted file mode 100644 index 7cf685e..0000000 --- a/SourceMe.py +++ /dev/null @@ -1,3 +0,0 @@ -import sys -sys.path.append('/home/tromey/gnu/archer/gui') -import gui.commands diff --git a/SourceMe.py.in b/SourceMe.py.in new file mode 100644 index 0000000..cd661f6 --- /dev/null +++ b/SourceMe.py.in @@ -0,0 +1,3 @@ +import sys +sys.path.append('HERE') +import gui.commands