Mercurial > hg > octave-lojdl
view libgui/Makefile.am @ 15445:87c3704b5c7a
no tracking for modification of a new editor file without name
* file-editor-tab.cc: check for UNNAMED_FILE before adding file name to the tracker list
author | Torsten <ttl@justmail.de> |
---|---|
date | Sun, 23 Sep 2012 20:00:44 +0200 |
parents | c7fd43f5a89d |
children | 5f031158c693 |
line wrap: on
line source
# Makefile for Octave's libgui directory # # Copyright (C) 2012 John W. Eaton # # This file is part of Octave. # # Octave is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; either version 3 of the License, or (at # your option) any later version. # # Octave is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License # for more details. # # You should have received a copy of the GNU General Public License # along with Octave; see the file COPYING. If not, see # <http://www.gnu.org/licenses/>. include $(top_srcdir)/build-aux/common.mk AUTOMAKE_OPTIONS = subdir-objects QT_INCDIR = @QT_INCDIR@ QT_LIBDIR = @QT_LIBDIR@ QT_LIBS = -lQtCore -lQtGui -lQtNetwork -lqscintilla2 QT_LDFLAGS = -L$(QT_LIBDIR) MOC_CPPFLAGS = octlib_LTLIBRARIES = liboctgui.la EXTRA_DIST = default-qt-settings CLEANFILES = BUILT_SOURCES = noinst_HEADERS = noinst_LTLIBRARIES = include src/module.mk include qterminal-module.mk ## liboctgui merely collects a bunch of compiled convenience libraries. ## It has no source code itself. liboctgui_la_SOURCES = include link-deps.mk # Dummy C++ source to force C++ linking. nodist_EXTRA_liboctgui_la_SOURCES = dummy.cc liboctgui_la_LIBADD = \ qterminal/libqterminal.la \ src/libgui-src.la \ $(top_builddir)/libinterp/liboctinterp.la \ $(top_builddir)/liboctave/liboctave.la \ $(LIBOCTGUI_LINK_DEPS) # Increment these as needed and according to the rules in the libtool manual: liboctgui_current = 0 liboctgui_revision = 0 liboctgui_age = 0 liboctgui_version_info = $(liboctgui_current):$(liboctgui_revision):$(liboctgui_age) liboctgui_la_LDFLAGS = \ -version-info $(liboctgui_version_info) \ $(NO_UNDEFINED_LDFLAG) \ -bindir $(bindir) \ $(LIBOCTGUI_LINK_OPTS) octetc_DATA = default-qt-settings moc-%.cc: %.h @MOC@ -o$@ $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(MOC_CPPFLAGS) $(liboctgui_la_CPPFLAGS) $< ui-%.h: %.ui @UIC@ -o $@ $< qrc-%.cc: %.qrc @RCC@ -o $@ $<