Skip to content

Commit

Permalink
Add install target.
Browse files Browse the repository at this point in the history
  • Loading branch information
eborisch committed May 28, 2021
1 parent dd92b63 commit 8b9a58e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
LCModel
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,14 @@ FC = gfortran
endif

FFLAGS += -ffpe-summary=none -std=legacy -O3
prefix ?= /usr/local

.PHONY: clean default
.PHONY: clean default install

default: LCModel

clean:
rm -f LCModel

install: LCModel
install -C LCModel $(DESTDIR)$(prefix)/bin/lcmodel

0 comments on commit 8b9a58e

Please sign in to comment.