ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/forceFields/Makefile
Revision: 559
Committed: Thu Jun 19 22:02:44 2003 UTC (21 years ago) by mmeineke
File size: 717 byte(s)
Log Message:
slowly converting to new integrator and forcefield names.

File Contents

# Content
1 #####################################################
2 # Makefile for Oopse ForceFields #
3 #####################################################
4 # You should not change anything here. #
5 #####################################################
6
7 TOP=..
8
9 include $(TOP)/Make.conf
10
11 .SUFFIXES : .frc
12
13 FRC_FILES= \
14 DipoleTest.frc \
15 LJFF.frc \
16 DUFF.frc
17
18 all: dummy
19
20 install :
21 $(MKINSTALLDIRS) $(FORCE_PARAM_DIR)
22 for i in $(FRC_FILES); do \
23 echo "Installing $$i in $(FORCE_PARAM_DIR)\n"; \
24 $(INSTALL_DATA) $$i $(FORCE_PARAM_DIR)/$$i; \
25 done
26
27 tests : dummy
28
29 clean : dummy
30 $(RM) *~
31
32 distclean : dummy
33 $(RM) *~
34
35 devclean : distclean
36
37 depend : dummy
38
39 links: dummy
40
41 tags : dummy
42
43 dummy :