Makefile 919 Bytes
# *****************************************************************
#
#	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)\
	`python-config --cflags`

LDFLAGS =\
	`python-config --ldflags`\
	-lX11

HEADERS = \
	py_tradutor.h\
	core_plugin.h	
        
SOURCES = \
        $(SRCDIR)/py_tradutor.cpp\
        $(SRCDIR)/core_plugin.cpp

.SUFFIXES: .cpp .o .h

include Makefile.build

default: all