# Copyright (C) 2006-2008 CEA/DEN, EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License. # # This library 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 # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com # include $(top_srcdir)/adm/unix/make_begin.am # Libraries targets lib_LTLIBRARIES = libSalomeWrap.la dist_libSalomeWrap_la_SOURCES = \ SalomeWrap_Module.cxx \ SalomeWrap_DataModel.cxx \ SuitWrapper.cxx \ WrapGraphicsView.cxx # MOC pre-processing MOC_FILES = \ SalomeWrap_Module_moc.cxx nodist_libSalomeWrap_la_SOURCES = $(MOC_FILES) libSalomeWrap_la_CXXFLAGS = \ $(THREAD_DEF) \ $(PYTHON_CPPFLAGS) \ $(OMNIORB_INCLUDES) \ $(BOOST_CPPFLAGS) \ -I$(KERNEL_ROOT_DIR)/include/salome \ -I$(GUI_ROOT_DIR)/include/salome \ -I$(srcdir)/../bases \ -I$(srcdir)/../engine \ -I$(srcdir)/../runtime \ -I$(srcdir)/../yacsloader \ -I$(srcdir)/../hmi \ -I$(srcdir)/../genericgui \ $(qt4_cppflags) # $(THREAD_DEF) \ # $(PYTHON_CPPFLAGS) \ # $(OMNIORB_INCLUDES) \ # $(LIBXML_INCLUDES) \ # $(BOOST_CPPFLAGS) \ # -I$(KERNEL_ROOT_DIR)/include/salome \ # -I$(GUI_ROOT_DIR)/include/salome \ # $(qt4_cppflags) \ # $(qsci4_cppflags) \ # @GRAPHVIZ_CPPFLAGS@ libSalomeWrap_la_LDFLAGS = \ -L$(GUI_ROOT_DIR)/lib/salome \ $(qt4_ldflags) # @GRAPHVIZ_LDFLAGS@ \ # -L$(GUI_ROOT_DIR)/lib/salome -L$(KERNEL_ROOT_DIR)/lib/salome \ # $(qt4_ldflags) libSalomeWrap_la_LIBADD = \ $(qt4_libs) \ -lSalomeApp # resources files # -------------------------------------------- # *.h --> *_moc.cxx # -------------------------------------------- SUFFIXES = .hxx _moc.cxx .qrc _qrc.cxx .hxx_moc.cxx : $(QT_MOC) -p . -o $@ $< clean-local-qt : rm -f *_moc.cxx *_qrc.cxx clean-local: clean-local-qt