ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Tree-M/GiST/Makefile
Revision: 1.4
Committed: Sun May 27 13:40:58 2001 UTC (25 years, 4 months ago) by root
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +5 -3 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 LIBRARY = libGiST.a
2    
3     SRCS = GiSTnode.cpp GiST.cpp GiSTfile.cpp GiSTpredicate.cpp GiSTcursor.cpp
4    
5 root 1.4 OBJS = GiSTnode.o GiST.o GiSTfile.o GiSTpredicate.o GiSTcursor.o
6 root 1.1
7     DEST = .
8    
9 root 1.2 CPP = $(CXX) -fpic
10 root 1.1
11     DEFINES = -DUNIX
12    
13     INCS =
14    
15 root 1.2 LINKER = $(LD)
16 root 1.1
17     LDFLAGS = #-L/home/users/patella/pub/libg++-2.7.1/
18    
19 root 1.4 .SUFFIXES: .cpp
20    
21     .cpp.o:
22     $(CPP) -c $(CFLAGS) $(OPTIMIZE) $(DEFINES) $(INCS) $<
23 root 1.1
24 root 1.3 $(LIBRARY): $(OBJS)
25 root 1.1 rm -f $(LIBRARY)
26     ar r $(LIBRARY) $(OBJS)
27     ranlib $(LIBRARY)
28    
29     clean:
30 root 1.3 rm -f $(OBJS) $(LIBRARY) *~ #*# *pure*
31 root 1.1
32     depend:
33 root 1.3 makedepend -Y $(DEFINES) $(INCS) $(SRCS)
34 root 1.1
35     install: $(PROGRAM)
36     echo Installing $(PROGRAM) in $(DEST)
37     install -s $(PROGRAM) $(DEST)
38    
39     # DO NOT DELETE
40    
41 root 1.3 GiSTnode.o: GiST.h GiSTdefs.h GiSTentry.h GiSTpredicate.h GiSTlist.h
42     GiSTnode.o: GiSTnode.h GiSTpath.h GiSTstore.h GiSTcursor.h
43     GiST.o: GiST.h GiSTdefs.h GiSTentry.h GiSTpredicate.h GiSTlist.h GiSTnode.h
44     GiST.o: GiSTpath.h GiSTstore.h GiSTcursor.h
45     GiSTfile.o: GiSTfile.h GiSTstore.h GiSTdefs.h
46     GiSTpredicate.o: GiST.h GiSTdefs.h GiSTentry.h GiSTpredicate.h GiSTlist.h
47     GiSTpredicate.o: GiSTnode.h GiSTpath.h GiSTstore.h GiSTcursor.h
48     GiSTcursor.o: GiST.h GiSTdefs.h GiSTentry.h GiSTpredicate.h GiSTlist.h
49     GiSTcursor.o: GiSTnode.h GiSTpath.h GiSTstore.h GiSTcursor.h