ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-2.0/samples/lipid/Makefile.in
Revision: 1490
Committed: Fri Sep 24 04:16:43 2004 UTC (19 years, 9 months ago) by gezelter
File size: 931 byte(s)
Log Message:
Import of OOPSE v. 2.0

File Contents

# Content
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=lipid
20
21 FILES= \
22 5x5.md \
23 5x5.in \
24 water.md \
25 lipid.md
26
27 all: dummy
28
29 install :
30 $(MKINSTALLDIRS) $(SAMPLE_SIM_DIR)$(MYSIM)
31 for i in $(FILES); do \
32 echo "Installing $$i in $(SAMPLE_SIM_DIR)$(MYSIM)"; \
33 $(INSTALL_DATA) $$i $(SAMPLE_SIM_DIR)$(MYSIM)/$$i; \
34 done
35
36 tests : dummy
37
38 clean : dummy
39 $(RM) *~
40
41 distclean : dummy
42 $(RM) *~ *.dump
43
44 devclean : distclean
45
46 depend : dummy
47
48 links: dummy
49
50 tags : dummy
51
52 dummy :