-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
executable file
·48 lines (36 loc) · 747 Bytes
/
Makefile
File metadata and controls
executable file
·48 lines (36 loc) · 747 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
include Makefile.top
MODULE = EncoderTest
CFLAGS = -I$(INCDIR)/ \
-I/usr/local/include/\
-I/usr/include/\
-Iinclude/\
#-I../../common/xml/include/\
#-I../common/include/\
CFLAGS += -g -ggdb -fPIC
## -lboost_iostreams
###-lboost_system -lboost_filesystem
LDFLAGS = \
-L/usr/local/lib\
SOURCES = \
metrics/Image.cpp\
metrics/Sobel.cpp\
metrics/Video.cpp\
metrics/PSNR.cpp\
metrics/SSIM.cpp\
metrics/PWSSIM.cpp\
metrics/Bjontegaard.cpp\
Thread.cpp\
InputVideo.cpp\
UnitTest.cpp\
LogFile.cpp\
ManagerTest.cpp\
MountManagerTest.cpp\
Parse.cpp\
FormatTime.cpp\
EncoderExec.cpp\
Controller.cpp\
ManagerMetrics.cpp\
main.cpp
.SUFFIXES: .cpp .o .h
include Makefile.build
default: all