Makefile
1.19 KB
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
# *****************************************************************
#
# VLibras: Automatic contents translator from Portuguese to LIBRAS
#
# Copyright (c) 2015 Leonardo Araújo
# VLibras-Core group at LAViD, Federal University of Paraiba
#
# *****************************************************************
# -----------------------------------------------------------------
# \file Makefile, Makefile.build, Makefile.top
# \authors Leonardo Araújo
# \date Março 2015
# -----------------------------------------------------------------
include Makefile.top
MODULE = vlibras_desktop
LIBNAME = CorePlugin
VERSION = 0.2
CFLAGS =\
-I$(INCDIR)\
-I/usr/include/python2.7 -I/usr/include/x86_64-linux-gnu/python2.7 -I/usr/local/include\
-fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector\
--param=ssp-buffer-size=4 -Wformat -Werror=format-security -DNDEBUG -g -fwrapv -O2 -Wall
LDFLAGS =\
`python-config --ldflags`\
-lX11\
-lcurl\
-llavid_base\
-llavid_io
HEADERS =\
py_tradutor.h\
core_plugin.h\
property.h
SOURCES = \
$(SRCDIR)/py_tradutor.cpp\
$(SRCDIR)/core_plugin.cpp\
$(SRCDIR)/property.cpp
.SUFFIXES: .cpp .o .h
include Makefile.build
default: all