ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/forceFields/Makefile.in
Revision: 999
Committed: Fri Jan 30 15:01:09 2004 UTC (20 years, 5 months ago) by chrisfen
File size: 1017 byte(s)
Log Message:
Substantial changes. OOPSE now has a working WATER.cpp forcefield and parser.
This involved changes to WATER.cpp and ForceFields amoung other files. One important
note: a hardwiring of LJ_rcut was made in calc_LJ_FF.F90. This will be removed on
the next commit...

File Contents

# User Rev Content
1 gezelter 747 #####################################################
2     # Makefile for Oopse ForceFields #
3     #####################################################
4     # You should not change anything here. #
5     #####################################################
6    
7     # Location of the oopse home
8     OOPSE_HOME=@OOPSE_HOME@
9     FORCE_PARAM_DIR=@OOPSE_HOME@/share/forceFields/
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     .SUFFIXES : .frc
20    
21     FRC_FILES= \
22     DipoleTest.frc \
23     LJFF.frc \
24 mmeineke 813 DUFF.frc \
25     EAM_FF.frc \
26 chrisfen 999 WATER.frc \
27 mmeineke 813 agu3.eam \
28     auu3.eam \
29     cuu3.eam \
30     niu3.eam \
31     pdu3.eam \
32     ptu3.eam
33 gezelter 747
34     all: dummy
35    
36     install :
37     $(MKINSTALLDIRS) $(FORCE_PARAM_DIR)
38     for i in $(FRC_FILES); do \
39     echo "Installing $$i in $(FORCE_PARAM_DIR)\n"; \
40     $(INSTALL_DATA) $$i $(FORCE_PARAM_DIR)/$$i; \
41     done
42    
43     tests : dummy
44    
45     clean : dummy
46     $(RM) *~
47    
48     distclean : dummy
49     $(RM) *~
50    
51     devclean : distclean
52    
53     depend : dummy
54    
55     links: dummy
56    
57     tags : dummy
58    
59     dummy :