From c43bb688c6cfac6cee39612b862d8a909f150493 Mon Sep 17 00:00:00 2001 From: tlatorre Date: Fri, 24 May 2019 14:13:48 -0400 Subject: add a script to submit jobs to the grid --- utils/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 utils/Makefile (limited to 'utils/Makefile') diff --git a/utils/Makefile b/utils/Makefile new file mode 100644 index 0000000..348c4f2 --- /dev/null +++ b/utils/Makefile @@ -0,0 +1,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 -- cgit