summaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: e516d039d11f356118e20bb87e9035f22357a54b (plain) (blame)
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
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/constructor.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)