ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-1.0/samples/argon/Makefile.in
Revision: 1384
Committed: Fri Jul 23 18:33:24 2004 UTC (20 years, 1 month ago) by tim
File size: 977 byte(s)
Log Message:
remove eor file

File Contents

# User Rev Content
1 gezelter 1334 #####################################################
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=argon
20    
21     FILES= \
22 tim 1384 argonNVT.bass \
23 tim 1383 argonNVT.in \
24 tim 1384 500.bass \
25     500.in \
26     ar864.bass \
27     ar864.in \
28 gezelter 1334 lj.mdl
29    
30     all: dummy
31    
32     install :
33     $(MKINSTALLDIRS) $(SAMPLE_SIM_DIR)$(MYSIM)
34     for i in $(FILES); do \
35     echo "Installing $$i in $(SAMPLE_SIM_DIR)$(MYSIM)"; \
36     $(INSTALL_DATA) $$i $(SAMPLE_SIM_DIR)$(MYSIM)/$$i; \
37     done
38    
39     tests : dummy
40    
41     clean : dummy
42     $(RM) *~
43    
44     distclean : dummy
45     $(RM) *~ *.dump
46    
47     devclean : distclean
48    
49     depend : dummy
50    
51     links: dummy
52    
53     tags : dummy
54    
55     dummy :