186
|
1 sinclude Makeconf |
|
2 |
|
3 ifdef HAVE_JPEG |
|
4 JPEG=jpgwrite.oct jpgread.oct |
|
5 endif |
|
6 |
|
7 ifdef HAVE_PNG |
|
8 PNG=pngread.oct pngwrite.oct |
|
9 endif |
|
10 |
350
|
11 all: __spatial_filtering__.oct __bilateral__.oct __custom_gaussian_smoothing__.oct \ |
328
|
12 bwlabel.oct bwfill.oct rotate_scale.oct hough_line.oct \ |
|
13 graycomatrix.oct deriche.oct __bwdist.oct nonmax_supress.oct \ |
350
|
14 $(JPEG) $(PNG) |
186
|
15 |
|
16 jpgread.oct: jpgread.cc |
|
17 $(MKOCTFILE) $< -ljpeg |
|
18 |
|
19 jpgwrite.oct: jpgwrite.cc |
|
20 $(MKOCTFILE) $< -ljpeg |
|
21 |
|
22 pngread.oct: pngread.cc |
|
23 $(MKOCTFILE) $< -lpng |
|
24 |
|
25 pngwrite.oct: pngwrite.cc |
|
26 $(MKOCTFILE) $< -lpng |
|
27 |
|
28 clean: ; -$(RM) *.o octave-core core *.oct *~ |