ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/xyz2pov/scripts/Makefile
Revision: 1096
Committed: Mon Apr 5 19:42:13 2004 UTC (20 years, 3 months ago) by mmeineke
File size: 833 byte(s)
Log Message:
added a makefile

File Contents

# Content
1 #####################################################
2 # Makefile for xyz2pov Scripts #
3 #####################################################
4 # You should not change anything here. #
5 #####################################################
6
7 TOP=..
8
9 include $(TOP)/Make.conf
10
11 SCRIPT_DIR=$(XYZ2POV_HOME)/bin
12
13 SCRIPT_FILES= \
14 renderAll\
15 renderRange
16
17 all: dummy
18
19 install :
20 $(MKINSTALLDIRS) $(SCRIPT_DIR)
21 for i in $(SCRIPT_FILES); do \
22 echo "Installing $$i in $(SCRIPT_DIR)\n"; \
23 $(INSTALL_PROGRAM) $$i $(SCRIPT_DIR)/$$i; \
24 done
25
26 tests : dummy
27
28 clean : dummy
29 $(RM) *~
30
31 distclean : dummy
32 $(RM) *~
33
34 devclean : distclean
35
36 depend : dummy
37
38 links:
39 $(MKINSTALLDIRS) $(PREFIX)/bin
40 for i in $(SCRIPT_FILES); do \
41 cd $(PREFIX)/bin; $(LN_S) -f $(SCRIPT_DIR)/$$i $$i; \
42 done
43
44 tags : dummy
45
46 dummy :