ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/samples/metals/Makefile.in
Revision: 815
Committed: Thu Oct 23 19:57:37 2003 UTC (20 years, 8 months ago) by mmeineke
File size: 927 byte(s)
Log Message:
added eam ForceField files to the init

fixed an eam mpi parmeter setup bug

added the init file to the makefile

File Contents

# User Rev Content
1 gezelter 748 #####################################################
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     Au.bass \
23 mmeineke 815 metals.mdl \
24     init_au.in
25 gezelter 748
26     all: dummy
27    
28     install :
29     $(MKINSTALLDIRS) $(SAMPLE_SIM_DIR)$(MYSIM)
30     for i in $(FILES); do \
31     echo "Installing $$i in $(SAMPLE_SIM_DIR)$(MYSIM)"; \
32     $(INSTALL_DATA) $$i $(SAMPLE_SIM_DIR)$(MYSIM)/$$i; \
33     done
34    
35     tests : dummy
36    
37     clean : dummy
38     $(RM) *~
39    
40     distclean : dummy
41     $(RM) *~ *.dump
42    
43     devclean : distclean
44    
45     depend : dummy
46    
47     links: dummy
48    
49     tags : dummy
50    
51     dummy :