ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/oopse-1.0/samples/zcons/Makefile
Revision: 1447
Committed: Fri Jul 30 21:01:35 2004 UTC (20 years, 1 month ago) by gezelter
File size: 1034 byte(s)
Log Message:
Initial import of OOPSE sources into cvs tree

File Contents

# User Rev Content
1 gezelter 1447 #####################################################
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=/usr/local/oopse
9     SAMPLE_SIM_DIR=/usr/local/oopse/share/samples/
10    
11     # BSD install
12     INSTALL=/usr/bin/install -c
13     INSTALL_PROGRAM=${INSTALL}
14     INSTALL_DATA=${INSTALL} -m 644
15     MKINSTALLDIRS=/home/maul/gezelter/gezelter/OOPSE-1.0/ac-tools/shtool mkdir -p -f
16    
17     TOP=../..
18    
19     MYSIM=zcons
20    
21     FILES= \
22     zconsMoving.md \
23     zconsMoving.in \
24     zconsFixed.md \
25     zconsFixed.in \
26     water.md
27    
28     all: dummy
29    
30     install :
31     $(MKINSTALLDIRS) $(SAMPLE_SIM_DIR)$(MYSIM)
32     for i in $(FILES); do \
33     echo "Installing $$i in $(SAMPLE_SIM_DIR)$(MYSIM)"; \
34     $(INSTALL_DATA) $$i $(SAMPLE_SIM_DIR)$(MYSIM)/$$i; \
35     done
36    
37     tests : dummy
38    
39     clean : dummy
40     $(RM) *~
41    
42     distclean : dummy
43     $(RM) *~ *.dump
44    
45     devclean : distclean
46    
47     depend : dummy
48    
49     links: dummy
50    
51     tags : dummy
52    
53     dummy :