diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2016-01-31 05:04:50 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2016-01-31 05:04:50 +0100 |
commit | ea0179e342343f5fbefb265bde4dea0d475f0781 (patch) | |
tree | 70af3013fe80707c802e88cae93bb5d504da2f55 /src/interface-curses/Makefile.am | |
parent | 2951f147ad24737e2c40a5fa4ace611a9b3fb829 (diff) | |
download | sciteco-ea0179e342343f5fbefb265bde4dea0d475f0781.tar.gz |
interfaces have their own automake subdirectories and convenience libraries now
* use libtool convenience libraries as much as possible
(for all static libraries except Scintilla)
* improves separation of language and user interface implementations
(e.g. the Gtk widgets are not interesting for the rest of SciTECO)
* the Curses popup widget can now be factored out of interface-curses.cpp
* some common CPPFLAGS are now defined by ./configure via AM_CPPFLAGS,
so they don't have to be repeated in each submodule.
* fixed building the Curses UI: GTK_FLOW_BOX_FALLBACK conditional
must always be defined.
Diffstat (limited to 'src/interface-curses/Makefile.am')
-rw-r--r-- | src/interface-curses/Makefile.am | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/interface-curses/Makefile.am b/src/interface-curses/Makefile.am new file mode 100644 index 0000000..a64694c --- /dev/null +++ b/src/interface-curses/Makefile.am @@ -0,0 +1,9 @@ +AM_CPPFLAGS += -I$(top_srcdir)/src + +AM_CXXFLAGS = -Wall -Wno-char-subscripts +if CLANG +AM_CXXFLAGS += -Wno-mismatched-tags +endif + +noinst_LTLIBRARIES = libsciteco-interface.la +libsciteco_interface_la_SOURCES = interface-curses.cpp interface-curses.h |