mirror of
https://gitlab.com/scemama/irpf90.git
synced 2025-01-03 01:55:42 +01:00
15 lines
238 B
Makefile
15 lines
238 B
Makefile
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:
|
|
rm -f *.c *.so *.pyc *.pyo 2>/dev/null
|