author | Dmitriy Morozov <dmitriy@mrzv.org> |
Fri, 17 Jul 2009 13:54:30 -0700 (2009-07-17) | |
changeset 3 | f1e962ffa1c2 |
parent 2 | 689462154b3a |
child 4 | c2859a25fad6 |
permissions | -rw-r--r-- |
0 | 1 |
#----------------------------------------------------------------------------- |
2 |
# Top-level Makefile for ANN. |
|
3 |
# |
|
4 |
# ANN: Approximate Nearest Neighbors |
|
5 |
# Version: 1.1 05/03/05 |
|
6 |
#----------------------------------------------------------------------------- |
|
7 |
# Copyright (c) 1997-2005 University of Maryland and Sunil Arya and |
|
8 |
# David Mount. All Rights Reserved. |
|
9 |
# |
|
10 |
# This software and related documentation is part of the Approximate |
|
11 |
# Nearest Neighbor Library (ANN). This software is provided under |
|
12 |
# the provisions of the Lesser GNU Public License (LGPL). See the |
|
13 |
# file ../ReadMe.txt for further information. |
|
14 |
# |
|
15 |
# The University of Maryland (U.M.) and the authors make no |
|
16 |
# representations about the suitability or fitness of this software for |
|
17 |
# any purpose. It is provided "as is" without express or implied |
|
18 |
# warranty. |
|
19 |
#----------------------------------------------------------------------------- |
|
20 |
# Revision 0.1 09/06/97 |
|
21 |
# alpha release |
|
22 |
# Revision 0.2 06/26/98 |
|
23 |
# Minor changes to fix compilation errors on SGI systems. |
|
24 |
# Revision 1.0 04/01/05 |
|
25 |
# Initial release (finally!) |
|
26 |
# Added linux-g++ target |
|
27 |
# Revision 1.1 05/03/05 |
|
28 |
# Added macosx-g++ target |
|
29 |
#----------------------------------------------------------------------------- |
|
30 |
||
31 |
#----------------------------------------------------------------------------- |
|
32 |
# default: list the options |
|
33 |
# The following legacy targets are also available. |
|
34 |
# make sunos4 for Sun with SunOS 4.x |
|
35 |
# make sunos4-g++ for Sun with SunOS 4.x and g++ |
|
36 |
# make alpha-g++ for DEC Alpha and g++ |
|
37 |
# The following targets are used for internal development only |
|
38 |
# make authors-debug author's debugging |
|
39 |
# make authors-perf author's performance evaluations |
|
40 |
# make distribution author's generation of distribution file |
|
41 |
#----------------------------------------------------------------------------- |
|
42 |
default: |
|
43 |
@echo "Enter one of the following:" |
|
44 |
@echo " make linux-g++ for Linux and g++" |
|
2
689462154b3a
Added linux-g++-sl (shared libraries under Linux)
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
0
diff
changeset
|
45 |
@echo " make linux-g++-sl for Linux and g++, make shared libs" |
0 | 46 |
@echo " make macosx-g++ for Mac OS X and g++" |
47 |
@echo " make sunos5 for Sun with SunOS 5.x" |
|
48 |
@echo " make sunos5-sl for Sun with SunOS 5.x, make shared libs" |
|
49 |
@echo " make sunos5-g++ for Sun with SunOS 5.x and g++" |
|
50 |
@echo " make sunos5-g++-sl for Sun with SunOS 5.x, g++, make shared libs" |
|
51 |
@echo " make clean remove .o files" |
|
52 |
@echo " make realclean remove .o, library and executable files" |
|
53 |
@echo " " |
|
54 |
@echo "See file Makefile for other compilation options, such as disabling" |
|
55 |
@echo "performance measurement code." |
|
56 |
||
57 |
#----------------------------------------------------------------------------- |
|
58 |
# main make entry point |
|
59 |
#----------------------------------------------------------------------------- |
|
2
689462154b3a
Added linux-g++-sl (shared libraries under Linux)
Dmitriy Morozov <dmitriy@mrzv.org>
parents:
0
diff
changeset
|
60 |
alpha-g++ macosx-g++ linux-g++ linux-g++-sl sgi sunos4 sunos4-g++ sunos5 sunos5-g++ sunos5-g++-sl authors-debug authors-perf: |
0 | 61 |
cd src ; $(MAKE) $@ |
62 |
cd test ; $(MAKE) $@ |
|
63 |
cd sample ; $(MAKE) $@ |
|
64 |
cd ann2fig ; $(MAKE) $@ |
|
65 |
||
66 |
#----------------------------------------------------------------------------- |
|
67 |
# Remove .o files and core files |
|
68 |
#----------------------------------------------------------------------------- |
|
69 |
clean: |
|
70 |
cd src ; $(MAKE) clean |
|
71 |
cd test ; $(MAKE) clean |
|
72 |
cd sample ; $(MAKE) clean |
|
73 |
cd ann2fig ; $(MAKE) clean |
|
74 |
cd doc ; $(MAKE) clean |
|
75 |
cd MS_Win32; $(MAKE) clean |
|
76 |
cd validate ; $(MAKE) clean |
|
77 |
||
78 |
#----------------------------------------------------------------------------- |
|
79 |
# Remove everthing that can be remade |
|
80 |
#----------------------------------------------------------------------------- |
|
81 |
realclean: |
|
82 |
-rm -f lib/* |
|
83 |
-rm -f bin/* |
|
84 |
cd src ; $(MAKE) realclean |
|
85 |
cd test ; $(MAKE) realclean |
|
86 |
cd sample ; $(MAKE) realclean |
|
87 |
cd ann2fig ; $(MAKE) realclean |
|
88 |
cd doc ; $(MAKE) realclean |
|
89 |
cd MS_Win32; $(MAKE) realclean |
|
90 |
cd validate ; $(MAKE) realclean |
|
91 |
||
92 |
#----------------------------------------------------------------------------- |
|
93 |
# Make distribution package (for use by authors only) |
|
94 |
#----------------------------------------------------------------------------- |
|
95 |
DISTR = ann_1.1.1 |
|
96 |
||
97 |
distribution: realclean |
|
98 |
cd .. ; mv -f $(DISTR) $(DISTR)-old; mkdir $(DISTR) |
|
99 |
cp Copyright.txt ../$(DISTR) |
|
100 |
cp License.txt ../$(DISTR) |
|
101 |
cp Make-config ../$(DISTR) |
|
102 |
cp Makefile ../$(DISTR) |
|
103 |
cp ReadMe.txt ../$(DISTR) |
|
104 |
cp -r MS_Win32 ../$(DISTR) |
|
105 |
# cd ..; mv -f $(DISTR)_MS_Win32_bin $(DISTR)_MS_Win32_bin-old |
|
106 |
cp -r MS_Win32_bin ../$(DISTR)_MS_Win32_bin |
|
107 |
cp -r bin ../$(DISTR) |
|
108 |
cp -r include ../$(DISTR) |
|
109 |
cp -r lib ../$(DISTR) |
|
110 |
cp -r src ../$(DISTR) |
|
111 |
cp -r test ../$(DISTR) |
|
112 |
cp -r sample ../$(DISTR) |
|
113 |
cp -r ann2fig ../$(DISTR) |
|
114 |
cd ../$(DISTR); mkdir doc |
|
115 |
cp doc/*.pdf ../$(DISTR)/doc |
|
116 |
# cd .. ; tar -cfv $(DISTR).tar $(DISTR) ; gzip $(DISTR).tar |