-
Notifications
You must be signed in to change notification settings - Fork 20
/
Makefile.in
55 lines (36 loc) · 1.32 KB
/
Makefile.in
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
CXXFLAGS=@CXXFLAGS@
CFLAGS=@CXXFLAGS@
LDFLAGS=@LDFLAGS@ @LIBS@
CXX=@CXX@
PROGS=learn_detector warp_to_png image_warp test_repeatability learn_fast_tree fast_N_features extract_features extract_FAST_features
.PHONY: all clean
all:$(PROGS)
learn_detector_orig:learn_detector_orig.o
$(CXX) -o $@ $^ $(LDFLAGS)
learn_detector:offsets.o faster_bytecode.o faster_tree.o learn_detector.o load_data.o
$(CXX) -o $@ $^ $(LDFLAGS)
learn_fast_tree:learn_fast_tree.o
$(CXX) -o $@ $^ $(LDFLAGS)
fast_N_features:fast_N_features.o
$(CXX) -o $@ $^ $(LDFLAGS)
warp_to_png:warp_to_png.o
$(CXX) -o $@ $^ $(LDFLAGS)
image_warp:image_warp.o load_data.o
$(CXX) -o $@ $^ $(LDFLAGS)
test_repeatability:test_repeatability.o load_data.o detectors.o harrislike.o dog.o cvd_fast.o faster_tree.o faster_detector.o offsets.o faster_bytecode.o @susan@
$(CXX) -o $@ $^ $(LDFLAGS)
extract_features:extract_features.o faster_tree.o offsets.o faster_bytecode.o
$(CXX) -o $@ $^ $(LDFLAGS)
extract_FAST_features:extract_FAST_features.o
$(CXX) -o $@ $^ $(LDFLAGS)
extract_fast_n_features:extract_fast_n_features.o
$(CXX) -o $@ $^ $(LDFLAGS)
mod_susan.c:susan2l.c susan.patch
cp susan2l.c mod_susan.c
patch mod_susan.c susan.patch
clean:
rm -f $(PROGS) *.o
docs:
doxygen
distclean: clean
rm -fr autom4te.cache config.status config.log Makefile