-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathMakefile
45 lines (26 loc) · 1.21 KB
/
Makefile
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
##########################################################################
# OpenCV Teaching Examples
# Author : Toby Breckon, [email protected]
# Copyright (c) 2006 School of Engineering, Cranfield University
# License : LGPL - http://www.gnu.org/licenses/lgpl.html
##########################################################################
# opencv setup using pkg-config
OPENCV_INCLUDE=`pkg-config opencv --cflags`
OPENCV_LIB=`pkg-config opencv --libs` # -L/opt/opencv/ffmpeg/lib -lavcodec -lavformat -lavutil
# general compiler setup
CC=gcc
CC_OPTS=-O3 -Wall
##########################################################################
EXAMPLES=adapthistequal
##########################################################################
all:
make $(EXAMPLES)
##########################################################################
# cranfield MSc demos
adapthistequal: adapthistequal.cc clahe.cc $(OBJS) $(HEADERS)
$(CC) $(CC_OPTS) $(CFLAGS) $(OPENCV_INCLUDE) $(OPENCV_LIB) \
adapthistequal.cc clahe.cc $(OBJS) -o adapthistequal
##########################################################################
clean:
rm -f *~ $(EXAMPLES)
##########################################################################