aboutsummaryrefslogtreecommitdiff
path: root/utils/Makefile
blob: 348c4f2c859a2eac741dfae85cbcce06622cfbd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# install python scripts with `make install`

PREFIX?=$(HOME)/local
INSTALL_BIN=$(PREFIX)/bin
INSTALL=install

all:

install:
	@mkdir -p $(INSTALL_BIN)
	$(INSTALL) plot $(INSTALL_BIN)
	$(INSTALL) plot-fit-results $(INSTALL_BIN)
	$(INSTALL) plot-likelihood $(INSTALL_BIN)
	$(INSTALL) submit-grid-jobs $(INSTALL_BIN)

.PHONY: install