ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/samples/beadLipid/Makefile
Revision: 533
Committed: Tue May 13 20:47:10 2003 UTC (21 years, 2 months ago) by mmeineke
File size: 724 byte(s)
Log Message:
Added bead lipid model to the sample directory

File Contents

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