1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
ifndef PYTHON
all::
@$(NoPythonError)
export::
@$(NoPythonError)
endif
DIR_CPPFLAGS = $(CORBA_CPPFLAGS)
CORBA_INTERFACES = echo
OBJS = embed.o
CXXSRCS = embed.cc
ifdef UnixPlatform
CXXDEBUGFLAGS = -g
PYPREFIX := $(shell $(PYTHON) -c 'import sys; print sys.exec_prefix')
PYVERSION := $(shell $(PYTHON) -c 'import sys; print sys.version[:3]')
PYINCBASE := $(shell $(PYTHON) -c 'import distutils.sysconfig, os.path; print os.path.basename(distutils.sysconfig.get_config_var("INCLUDEPY"))')
PY_SHAREDLIB_SUFFIX := $(shell $(PYTHON) -c 'import distutils.sysconfig; print distutils.sysconfig.get_config_var("SHLIB_EXT")')
PYINCDIR := $(PYPREFIX)/include
PYINCFILE := "<$(PYINCBASE)/Python.h>"
DIR_CPPFLAGS += -I$(PYINCDIR) -DPYTHON_INCLUDE=$(PYINCFILE)
endif
ifeq ($(platform),autoconf)
namespec := _embedmodule _ 1 0
SharedLibraryFullNameTemplate = $$1$$2$(PY_SHAREDLIB_SUFFIX).$$3.$$4
SharedLibrarySoNameTemplate = $$1$$2$(PY_SHAREDLIB_SUFFIX).$$3
SharedLibraryLibNameTemplate = $$1$$2$(PY_SHAREDLIB_SUFFIX)
ifdef PythonLibraryPlatformLinkFlagsTemplate
SharedLibraryPlatformLinkFlagsTemplate = $(PythonLibraryPlatformLinkFlagsTemplate)
endif
shlib := $(shell $(SharedLibraryFullName) $(namespec))
DIR_CPPFLAGS += $(SHAREDLIB_CPPFLAGS)
$(shlib): $(OBJS) $(CORBA_STATIC_STUB_OBJS) $(CORBA_LIB_DEPEND)
@(namespec="$(namespec)"; extralibs="$(OMNIORB_LIB_NODYN) $(extralibs)";\
$(MakeCXXSharedLibrary))
all:: $(shlib)
export:: $(shlib)
@(namespec="$(namespec)"; $(ExportSharedLibrary))
ifdef INSTALLTARGET
install:: $(shlib)
@(dir="$(INSTALLPYEXECDIR)"; namespec="$(namespec)"; \
$(ExportSharedLibraryToDir))
endif
clean::
$(RM) *.o
(dir=.; $(CleanSharedLibrary))
veryclean::
$(RM) *.o
(dir=.; $(CleanSharedLibrary))
else
#############################################################################
# Make rules for Linux #
#############################################################################
ifdef Linux
CXXOPTIONS += -fpic
lib = _embedmodule.so
all:: $(lib)
$(lib): $(OBJS) $(CORBA_STATIC_STUB_OBJS) $(CORBA_LIB_DEPEND)
(set -x; \
$(RM) $@; \
$(CXXLINK) $(CXXLINKOPTIONS) -shared -o $@ -Wl,-soname,$(lib) $(IMPORT_LIBRARY_FLAGS) $(CORBA_LIB_NODYN) \
$(filter-out $(LibSuffixPattern),$^) $(LIBS)\
)
export:: $(lib)
@$(ExportLibrary)
clean::
$(RM) $(lib)
endif
#############################################################################
# Make rules for Windows #
#############################################################################
ifdef Win32Platform
PYPREFIX1 := "$(shell $(PYTHON) -c 'import sys,string; sys.stdout.write(string.lower(sys.prefix))')"
PYPREFIX := $(subst program files,progra~1,$(subst \,/,$(PYPREFIX1)))
PYVERSION := $(shell $(PYTHON) -c 'import sys; sys.stdout.write(sys.version[:3])')
PYINCDIR := $(PYPREFIX)/include
PYLIBDIR := $(PYPREFIX)/libs
PYLIB := python$(subst .,,$(PYVERSION)).lib
DIR_CPPFLAGS += -I$(PYINCDIR) -I$(PYINCDIR)/python$(PYVERSION) \
-DPYTHON_INCLUDE="<Python.h>"
PYLIBPATH = $(patsubst %,-libpath:%,$(PYLIBDIR))
implib = _embed.lib
lib = $(patsubst %.lib,%.pyd,$(implib))
all:: $(lib)
$(lib): $(OBJS) $(CORBA_STATIC_STUB_OBJS) $(CORBA_LIB_DEPEND)
(set -x; \
$(RM) $@; \
libs="$(OMNIORB_LIB_NODYN) $(PYLIB)"; \
$(CXXLINK) -out:$@ -DLL $(CXXLINKOPTIONS) $(IMPORT_LIBRARY_FLAGS) $(PYLIBPATH) $(OBJS) $(CORBA_STATIC_STUB_OBJS) $$libs; \
)
export:: $(lib)
@$(ExportLibrary)
endif
endif
|