diff options
author | Barattero Laurent <laurent@larueluberlu.net> | 2014-01-18 10:24:55 +0100 |
---|---|---|
committer | Barattero Laurent <laurent@larueluberlu.net> | 2014-01-18 10:24:55 +0100 |
commit | 45ab288c8256f2787e7bf694c7a48888592be4cd (patch) | |
tree | 2e5541878cf4ec75a02e9b7b0846b522a2969371 /src/Makefile.am | |
parent | 21f1a950c54e27044abcc35159cdcf5b8dc602d2 (diff) |
first commit release 0.2
Diffstat (limited to '')
-rw-r--r-- | src/Makefile.am | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..bf11705 --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,28 @@ +bin_PROGRAMS = aeroup + +ext_src = +if BOOST +ext_src += serialboost.cpp +ext_src += regboost.cpp +#echo have boost +else +ext_src += reglinux.cpp +ext_src += seriallinux.cpp +#echo have not boost +endif + +aeroup_SOURCES = \ + main.cpp \ + ultimate.cpp \ + serialprop.cpp \ + optmanager.cpp \ + gloseq.cpp \ + buffer.cpp \ + buffermanager.cpp \ + rules.cpp \ + ${ext_src} + +aeroup_CPPFLAGS = -W -Wall -std=c++11 +aeroup_LDFLAGS = +#LIBS += +#-DSERIAL_BOOST_LIB |