aboutsummaryrefslogtreecommitdiff
path: root/utils/Makefile
blob: 677fdd367a429bc573d71243f8b469cfba8f19e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# 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)
	$(INSTALL) gen-dark-matter $(INSTALL_BIN)
	$(INSTALL) fit-wrapper $(INSTALL_BIN)
	$(INSTALL) cat-grid-jobs $(INSTALL_BIN)
	$(INSTALL) plot-energy $(INSTALL_BIN)
	$(INSTALL) zdab-reprocess $(INSTALL_BIN)
	$(INSTALL) zdab-reprocess-orphans $(INSTALL_BIN)
	$(INSTALL) delete-zdabs $(INSTALL_BIN)
	$(INSTALL) mv-grid-files $(INSTALL_BIN)
	$(INSTALL) plot-muons $(INSTALL_BIN)
	$(INSTALL) chi2 $(INSTALL_BIN)
	$(INSTALL) convert-genie-rw $(INSTALL_BIN)
	$(INSTALL) plot-dc $(INSTALL_BIN)
	$(INSTALL) dc $(INSTALL_BIN)
	$(INSTALL) dc-closure-test $(INSTALL_BIN)
	$(INSTALL) plot-michels $(INSTALL_BIN)
	./setup.py install --prefix=$(PREFIX)

.PHONY: install