Add .travis.yml file and missing test
[command.git] / Makefile.am
1 AUTOMAKE_OPTIONS = gnu subdir-objects
2 ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS}
3 AM_CXXFLAGS=-std=c++11
4
5 MAINTAINERCLEANFILES = \
6     aclocal.m4 \
7     config.h.in \
8     config.log \
9     config.status \
10     configure \
11     configure.files \
12     stamp-h.in \
13     depcomp \
14     install-sh \
15     missing
16
17
18 CLEANFILES = \
19     %.o \
20     %.bak \
21     %~ \
22     doxyfile.stamp
23
24 SUBDIRS = include . tests examples docs
25
26 noinst_PROGRAMS = bin/command
27
28 dist_noinst_SCRIPTS = autogen.sh
29
30 nodist_bin_command_SOURCES = \
31     src/main.cpp
32
33
34 bin_command_CPPFLAGS = \
35     $(bin_command_CFLAGS) \
36     -I$(top_srcdir)/include \
37     -Wall -pedantic -Wextra