From 22115cd6a5146a065c778679f05a366cc85be7b8 Mon Sep 17 00:00:00 2001 From: Anthony Scemama Date: Sun, 6 Dec 2020 16:52:51 +0100 Subject: [PATCH] Install vim and emacs --- src/Makefile | 10 ++++++++++ src/irpf90.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 315e2ae..e0ce54f 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,3 +1,13 @@ +all: exe vim emacs + +exe: ../bin/irpf90 + +vim: + python3 vim.py + +emacs: + python3 emacs.py + ../bin/irpf90: irpf90_python.exe rm ../bin/irpf90 ; cd ../bin ; ln -s ../src/irpf90_python.exe irpf90 clean: diff --git a/src/irpf90.py b/src/irpf90.py index f8ce2ea..1299c69 100644 --- a/src/irpf90.py +++ b/src/irpf90.py @@ -38,7 +38,7 @@ from command_line import command_line def main(): - vim.install() +# vim.install() if command_line.do_help: command_line.usage()