annotate src/Makefile @ 350:f8c6b6fa1217

Support a new set of spatial filters
author hauberg
date Sun, 05 Oct 2008 19:18:25 +0000
parents a17295e21b82
children 870ecf0abb54
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
186
13c6a9bdec24 Changed the structure to match the package system
hauberg
parents:
diff changeset
1 sinclude Makeconf
13c6a9bdec24 Changed the structure to match the package system
hauberg
parents:
diff changeset
2
13c6a9bdec24 Changed the structure to match the package system
hauberg
parents:
diff changeset
3 ifdef HAVE_JPEG
13c6a9bdec24 Changed the structure to match the package system
hauberg
parents:
diff changeset
4 JPEG=jpgwrite.oct jpgread.oct
13c6a9bdec24 Changed the structure to match the package system
hauberg
parents:
diff changeset
5 endif
13c6a9bdec24 Changed the structure to match the package system
hauberg
parents:
diff changeset
6
13c6a9bdec24 Changed the structure to match the package system
hauberg
parents:
diff changeset
7 ifdef HAVE_PNG
13c6a9bdec24 Changed the structure to match the package system
hauberg
parents:
diff changeset
8 PNG=pngread.oct pngwrite.oct
13c6a9bdec24 Changed the structure to match the package system
hauberg
parents:
diff changeset
9 endif
13c6a9bdec24 Changed the structure to match the package system
hauberg
parents:
diff changeset
10
350
f8c6b6fa1217 Support a new set of spatial filters
hauberg
parents: 343
diff changeset
11 all: __spatial_filtering__.oct __bilateral__.oct __custom_gaussian_smoothing__.oct \
328
955a4414970b Added support for custom Gaussian smoothing
hauberg
parents: 313
diff changeset
12 bwlabel.oct bwfill.oct rotate_scale.oct hough_line.oct \
955a4414970b Added support for custom Gaussian smoothing
hauberg
parents: 313
diff changeset
13 graycomatrix.oct deriche.oct __bwdist.oct nonmax_supress.oct \
350
f8c6b6fa1217 Support a new set of spatial filters
hauberg
parents: 343
diff changeset
14 $(JPEG) $(PNG)
186
13c6a9bdec24 Changed the structure to match the package system
hauberg
parents:
diff changeset
15
13c6a9bdec24 Changed the structure to match the package system
hauberg
parents:
diff changeset
16 jpgread.oct: jpgread.cc
13c6a9bdec24 Changed the structure to match the package system
hauberg
parents:
diff changeset
17 $(MKOCTFILE) $< -ljpeg
13c6a9bdec24 Changed the structure to match the package system
hauberg
parents:
diff changeset
18
13c6a9bdec24 Changed the structure to match the package system
hauberg
parents:
diff changeset
19 jpgwrite.oct: jpgwrite.cc
13c6a9bdec24 Changed the structure to match the package system
hauberg
parents:
diff changeset
20 $(MKOCTFILE) $< -ljpeg
13c6a9bdec24 Changed the structure to match the package system
hauberg
parents:
diff changeset
21
13c6a9bdec24 Changed the structure to match the package system
hauberg
parents:
diff changeset
22 pngread.oct: pngread.cc
13c6a9bdec24 Changed the structure to match the package system
hauberg
parents:
diff changeset
23 $(MKOCTFILE) $< -lpng
13c6a9bdec24 Changed the structure to match the package system
hauberg
parents:
diff changeset
24
13c6a9bdec24 Changed the structure to match the package system
hauberg
parents:
diff changeset
25 pngwrite.oct: pngwrite.cc
13c6a9bdec24 Changed the structure to match the package system
hauberg
parents:
diff changeset
26 $(MKOCTFILE) $< -lpng
13c6a9bdec24 Changed the structure to match the package system
hauberg
parents:
diff changeset
27
13c6a9bdec24 Changed the structure to match the package system
hauberg
parents:
diff changeset
28 clean: ; -$(RM) *.o octave-core core *.oct *~