ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-4/samples/Makefile.in
Revision: 2122
Committed: Sat Mar 12 19:12:56 2005 UTC (19 years, 3 months ago) by chrisfen
File size: 921 byte(s)
Log Message:
forgot a couple of makefiles

File Contents

# Content
1 #####################################################
2 # Makefile for OOPSE samples #
3 #####################################################
4 # You should not change anything here. #
5 #####################################################
6
7 TOP=..
8
9 SAMPLES=argon water alkane lipid minimizer metals zcons thermoIntegration
10
11 subdirs :
12 @set -e; for i in $(SAMPLES); do (cd $$i; $(MAKE)) || exit 1; done
13
14 all : subdirs
15
16 install : subdirs
17 @set -e; for i in $(SAMPLES); do (cd $$i; $(MAKE) install) || exit 1; done
18
19 check : dummy
20
21 links : subdirs
22 @set -e; for i in $(SAMPLES); do (cd $$i; $(MAKE) links) || exit 1; done
23
24 clean :
25 @set -e; for i in $(SAMPLES); do (cd $$i; $(MAKE) clean) || exit 1; done
26
27 distclean :
28 @set -e; for i in $(SAMPLES); do (cd $$i; $(MAKE) distclean) || exit 1; done
29
30 devclean :
31 @set -e; for i in $(SAMPLES); do (cd $$i; $(MAKE) devclean) || exit 1; done
32
33 dummy :
34