-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (25 loc) · 874 Bytes
/
Makefile
File metadata and controls
28 lines (25 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#-----------------------------------------------------------------------------
# Top level makefile for Bundler
#
# Bundler: Structure from Motion for Unordered Photo Collections
# Version: 0.1 08/10/2008
# http://phototour.cs.washington.edu/bundler/
#-----------------------------------------------------------------------------
# Copyright (c) 2008 University of Washington, Cornell University
# and Noah Snavely
# All Rights Reserved.
#-----------------------------------------------------------------------------
default:
# Make libraries
cd lib/ann_L1_0.2; $(MAKE) alpha-g++ #linux-g++-shared
cd lib/imagelib; $(MAKE)
cd lib/matrix; $(MAKE)
cd lib/minpack; $(MAKE)
# Make program
cd src; $(MAKE)
clean:
cd lib/ann_L1_0.2; $(MAKE) clean
cd lib/imagelib; $(MAKE) clean
cd lib/matrix; $(MAKE) clean
cd lib/minpack; $(MAKE) clean
cd src; $(MAKE) clean