ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/xyz2pov/AtomTypes/Makefile
Revision: 509
Committed: Tue Apr 29 17:45:47 2003 UTC (21 years, 2 months ago) by mmeineke
File size: 666 byte(s)
Log Message:
Rearranged the source tree to be easier to distribute.
Added autoconf and automatic dependency generation

File Contents

# Content
1 #####################################################
2 # Makefile for xyz2pov AtomType files #
3 #####################################################
4 # You should not change anything here. #
5 #####################################################
6
7 TOP=..
8
9 include $(TOP)/Make.conf
10
11 TYPE_FILES= \
12 AtomTypes
13
14 all: dummy
15
16 install :
17 $(MKINSTALLDIRS) $(ATOMTYPES_DIR)
18 for i in $(TYPE_FILES); do \
19 echo "Installing $$i in $(ATOMTYPES_DIR)\n"; \
20 $(INSTALL_DATA) $$i $(ATOMTYPES_DIR)/$$i; \
21 done
22
23 tests : dummy
24
25 clean : dummy
26 $(RM) *~
27
28 distclean : dummy
29 $(RM) *~
30
31 devclean : distclean
32
33 depend : dummy
34
35 links: dummy
36
37 tags : dummy
38
39 dummy :