85 lines
2.4 KiB
Makefile
85 lines
2.4 KiB
Makefile
# Copyright (C) 2005 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
# CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS, L3S, LJLL, MENSI
|
|
#
|
|
# 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
|
|
#
|
|
#
|
|
# generate dependencies for idl file :
|
|
#
|
|
|
|
# source path
|
|
top_srcdir=@top_srcdir@
|
|
top_builddir=..
|
|
srcdir=@srcdir@
|
|
VPATH=.:${KERNEL_ROOT_DIR}/idl/salome:${GEOM_ROOT_DIR}/idl/salome :${SMESH_ROOT_DIR}/idl/salome
|
|
#:${MED_ROOT_DIR}/idl/salome
|
|
|
|
@COMMENCE@
|
|
|
|
IDL_FILES = NETGENPlugin_Algorithm.idl
|
|
|
|
|
|
# copy all idl file in $(top_builddir)/idl
|
|
inc: $(top_builddir)/idl/salome $(IDL_FILES:%=$(top_builddir)/idl/salome/%)
|
|
|
|
$(top_builddir)/idl/salome:
|
|
$(INSTALL) -d $@
|
|
|
|
$(IDL_FILES:%=$(top_builddir)/idl/salome/%):$(IDL_FILES:%=$(top_srcdir)/idl/%)
|
|
cp -f $^ $(top_builddir)/idl/salome
|
|
|
|
|
|
# python wrap
|
|
lib: pyidl
|
|
|
|
PYTHON_BUILD_SITE=$(top_builddir)/lib/python$(PYTHON_VERSION)/site-packages/@PACKAGE@
|
|
|
|
pyidl: $(PYTHON_BUILD_SITE) $(IDL_FILES:%.idl=$(PYTHON_BUILD_SITE)/%_idl.py)
|
|
|
|
$(PYTHON_BUILD_SITE):
|
|
$(INSTALL) -d $@
|
|
|
|
$(PYTHON_BUILD_SITE)/%_idl.py: $(top_builddir)/idl/salome/%.idl
|
|
$(OMNIORB_IDL) $(OMNIORB_IDLPYFLAGS) -C$(PYTHON_BUILD_SITE) $<
|
|
|
|
|
|
# install python client (generated from idl file)
|
|
install: $(IDL_FILES:%=$(top_builddir)/idl/salome/%)
|
|
$(INSTALL) -d $(idldir) $(PYTHON_SITE_INSTALL)
|
|
$(INSTALL_DATA) $^ $(idldir)
|
|
@for file in $^ dummy; do \
|
|
if [ $$file != "dummy" ]; then \
|
|
$(OMNIORB_IDL) $(OMNIORB_IDLPYFLAGS) -C$(PYTHON_SITE_INSTALL) $$file ; \
|
|
fi ; \
|
|
done ;
|
|
|
|
uninstall:
|
|
-$(RM) $(IDL_FILES:%=$(idldir)/%)
|
|
-$(RM) $(IDL_FILES:%.idl=$(PYTHON_SITE_INSTALL)/%_idl.py)
|
|
|
|
# clean
|
|
cleandep:
|
|
-$(RM) .dep*
|
|
|
|
clean: cleandep
|
|
-$(RM) $(top_builddir)/idl/salome/*.idl
|
|
-$(RM) $(PYTHON_BUILD_SITE)/*.py
|
|
|
|
distclean: clean
|
|
-$(RM) Makefile
|
|
|