ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-1.0/samples/zcons/Makefile.in
Revision: 1438
Committed: Thu Jul 29 19:36:58 2004 UTC (19 years, 11 months ago) by tim
File size: 969 byte(s)
Log Message:
add Makefile.in into zcons

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=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 :