blob: 28fe2192a2e5277a81e917ab5a99881b1020bfce (
plain) (
tree)
|
|
AUTOMAKE_OPTIONS = subdir-objects
bin_PROGRAMS = mplint
mplint_CXXFLAGS = -DPKG_DATADIR=\""$(pkgdatadir)/"\" \
-DLOCALEDIR=\""$(localedir)"\" \
-Wall -Wextra
mplint_SOURCES = \
lintmanager.cpp \
lintmanager.h \
localconsts.h \
main.cpp \
rulebase.cpp \
rulebase.h \
stringutils.cpp \
stringutils.h \
stringvector.h \
template.hpp \
rules/baseclass.cpp \
rules/brackets.cpp \
rules/constructor.cpp \
rules/constructorbrackets.cpp \
rules/copyconstructor.cpp \
rules/debug.cpp \
rules/dump.cpp \
rules/final.cpp \
rules/formatting.cpp \
rules/include.cpp \
rules/license.cpp \
rules/packet.cpp \
rules/po.cpp \
rules/translation.cpp \
rules/virtual.cpp \
rules/xml.cpp
# set the include path found by configure
AM_CPPFLAGS = $(all_includes)
|