| 1 |
##################################################### |
| 2 |
# Makefile for Oopse Sample Simulations # |
| 3 |
##################################################### |
| 4 |
# You should not change anything here. # |
| 5 |
##################################################### |
| 6 |
|
| 7 |
# Location of the oopse home |
| 8 |
OOPSE_HOME=@OOPSE_HOME@ |
| 9 |
SAMPLE_SIM_DIR=@OOPSE_HOME@/share/samples/ |
| 10 |
|
| 11 |
# BSD install |
| 12 |
INSTALL=@INSTALL@ |
| 13 |
INSTALL_PROGRAM=@INSTALL_PROGRAM@ |
| 14 |
INSTALL_DATA=@INSTALL_DATA@ |
| 15 |
MKINSTALLDIRS=@MKINSTALLDIRS@ |
| 16 |
|
| 17 |
TOP=../.. |
| 18 |
|
| 19 |
MYSIM=metals |
| 20 |
|
| 21 |
FILES= \ |
| 22 |
metals.md \ |
| 23 |
Au_bulk_FBD.md \ |
| 24 |
Au_bulk.in \ |
| 25 |
Au_bulk_voter.md \ |
| 26 |
Au-Core-Ag-Shell_Nanoparticle.md \ |
| 27 |
Au-Core-Ag-Shell_Nanoparticle.in \ |
| 28 |
Au_nanoparticle.md \ |
| 29 |
Au_nanoparticle.in |
| 30 |
|
| 31 |
all: dummy |
| 32 |
|
| 33 |
install : |
| 34 |
$(MKINSTALLDIRS) $(SAMPLE_SIM_DIR)$(MYSIM) |
| 35 |
for i in $(FILES); do \ |
| 36 |
echo "Installing $$i in $(SAMPLE_SIM_DIR)$(MYSIM)"; \ |
| 37 |
$(INSTALL_DATA) $$i $(SAMPLE_SIM_DIR)$(MYSIM)/$$i; \ |
| 38 |
done |
| 39 |
|
| 40 |
tests : dummy |
| 41 |
|
| 42 |
clean : dummy |
| 43 |
$(RM) *~ |
| 44 |
|
| 45 |
distclean : dummy |
| 46 |
$(RM) *~ *.dump |
| 47 |
|
| 48 |
devclean : distclean |
| 49 |
|
| 50 |
depend : dummy |
| 51 |
|
| 52 |
links: dummy |
| 53 |
|
| 54 |
tags : dummy |
| 55 |
|
| 56 |
dummy : |