diff options
author | tlatorre <tlatorre@uchicago.edu> | 2019-05-24 14:13:48 -0400 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2019-05-24 14:13:48 -0400 |
commit | c43bb688c6cfac6cee39612b862d8a909f150493 (patch) | |
tree | f8aefea9dc66dedf62f4350f73c032629efafe1b /utils/Makefile | |
parent | 38a2d79ea9fac199b34653f3f89dc731d5b84b8c (diff) | |
download | sddm-c43bb688c6cfac6cee39612b862d8a909f150493.tar.gz sddm-c43bb688c6cfac6cee39612b862d8a909f150493.tar.bz2 sddm-c43bb688c6cfac6cee39612b862d8a909f150493.zip |
add a script to submit jobs to the grid
Diffstat (limited to 'utils/Makefile')
-rw-r--r-- | utils/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
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 |