ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/oopse-1.0/samples/metals/Makefile
Revision: 1447
Committed: Fri Jul 30 21:01:35 2004 UTC (20 years, 1 month ago) by gezelter
File size: 1134 byte(s)
Log Message:
Initial import of OOPSE sources into cvs tree

File Contents

# User Rev Content
1 gezelter 1447 #####################################################
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=/usr/local/oopse
9     SAMPLE_SIM_DIR=/usr/local/oopse/share/samples/
10    
11     # BSD install
12     INSTALL=/usr/bin/install -c
13     INSTALL_PROGRAM=${INSTALL}
14     INSTALL_DATA=${INSTALL} -m 644
15     MKINSTALLDIRS=/home/maul/gezelter/gezelter/OOPSE-1.0/ac-tools/shtool mkdir -p -f
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 :