X-Git-Url: https://git.dlugolecki.net.pl/?p=command.git;a=blobdiff_plain;f=examples%2FMakefile.am;fp=examples%2FMakefile.am;h=ece5a5bde6c3523aa7ab733febc02988b22c39af;hp=0000000000000000000000000000000000000000;hb=5d3d8cfdf0048da0f821c055be2565f9c49e3107;hpb=6029eb4be9fbcda03387e9d013e3f026f08a8341 diff --git a/examples/Makefile.am b/examples/Makefile.am new file mode 100644 index 0000000..ece5a5b --- /dev/null +++ b/examples/Makefile.am @@ -0,0 +1,18 @@ +noinst_PROGRAMS = \ + functions \ + methods + +AM_CXXFLAGS = -std=c++11 + +functions_CPPFLAGS = \ + -I$(top_srcdir)/include \ + -Wall -pedantic -Wextra +functions_SOURCES = \ + functions.cpp + +methods_CPPFLAGS = \ + -I$(top_srcdir)/include \ + -Wall -pedantic -Wextra +methods_SOURCES = \ + methods.cpp +