We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd92b63 commit 8b9a58eCopy full SHA for 8b9a58e
2 files changed
.gitignore
@@ -0,0 +1 @@
1
+LCModel
Makefile
@@ -6,10 +6,14 @@ FC = gfortran
6
endif
7
8
FFLAGS += -ffpe-summary=none -std=legacy -O3
9
+prefix ?= /usr/local
10
-.PHONY: clean default
11
+.PHONY: clean default install
12
13
default: LCModel
14
15
clean:
16
rm -f LCModel
17
+
18
+install: LCModel
19
+ install -C LCModel $(DESTDIR)$(prefix)/bin/lcmodel
0 commit comments