ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/samples/lipid/Makefile.in
Revision: 747
Committed: Fri Sep 5 21:28:52 2003 UTC (20 years, 9 months ago) by gezelter
File size: 941 byte(s)
Log Message:
Changes to autoconf / configure method of configuring OOPSE

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.bass \
23 init_5x5.eor \
24 water.mdl \
25 lipid.mdl
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 :