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 (22 years, 11 months ago) by root
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +5 -3 lines
Log Message:
*** empty log message ***

File Contents

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