Update generated files

This commit is contained in:
Eric Blossom 2010-10-18 19:24:49 -07:00
parent 6f86a68513
commit 3699771aa9
1 changed files with 80 additions and 32 deletions

View File

@ -38,6 +38,16 @@ usrp_prims_pylibdir_category ?= $(usrp_prims_pythondir_category)
usrp_prims_pythondir = $(pythondir)/$(usrp_prims_pythondir_category)
usrp_prims_pylibdir = $(pyexecdir)/$(usrp_prims_pylibdir_category)
# The .so libraries for the guile modules get installed whereever guile
# is installed, usually /usr/lib/guile/gnuradio/
# FIXME: determince whether these should be installed with gnuradio.
usrp_prims_scmlibdir = @GUILE_PKLIBDIR@/gnuradio
# The scm files for the guile modules get installed where ever guile
# is installed, usually /usr/share/guile/site/usrp_prims
# FIXME: determince whether these should be installed with gnuradio.
usrp_prims_scmdir = @GUILE_PKDATADIR@/gnuradio
## SWIG headers are always installed into the same directory.
usrp_prims_swigincludedir = $(swigincludedir)
@ -73,6 +83,9 @@ MOSTLYCLEANFILES += $(DEPDIR)/*.S*
## be added manually by the including Makefile.am .
swig_built_sources += usrp_prims.py usrp_prims_python.cc
if GUILE
swig_built_sources += usrp_prims.scm usrp_prims_guile.cc
endif
## Various SWIG variables. These can be overloaded in the including
## Makefile.am by setting the variable value there, then including
@ -106,11 +119,11 @@ usrp_prims_python_PYTHON = \
$(usrp_prims_python)
if GUILE
usrp_prims_pylib_LTLIBRARIES += _usrp_prims_guile.la
usrp_prims_scmlib_LTLIBRARIES = _usrp_prims_guile.la
_usrp_prims_guile_la_SOURCES = \
usrp_prims_guile.cc \
usrp_prims_guile.cc \
$(usrp_prims_la_swig_sources)
usrp_prims_scm_DATA = usrp_prims.scm
# Guile can use the same flags as python does
_usrp_prims_guile_la_LIBADD = $(_usrp_prims_python_la_LIBADD)
@ -121,7 +134,8 @@ endif # end of GUILE
## Entry rule for running SWIG
usrp_prims.h usrp_prims.py usrp_prims_python.cc: usrp_prims.i
# $(python_deps) $(guile_deps): usrp_prims.i
usrp_prims_python.h usrp_prims.py usrp_prims_python.cc: usrp_prims.i
## This rule will get called only when MAKE decides that one of the
## targets needs to be created or re-created, because:
##
@ -178,7 +192,6 @@ usrp_prims.h usrp_prims.py usrp_prims_python.cc: usrp_prims.i
## Tell MAKE to run the rule for creating this stamp.
##
$(MAKE) $(AM_MAKEFLAGS) $(DEPDIR)/usrp_prims-generate-python-stamp WHAT=$<; \
$(MAKE) $(AM_MAKEFLAGS) $(DEPDIR)/usrp_prims-generate-guile-stamp WHAT=$<; \
##
## Now that the .cc, .h, and .py files have been (re)created from the
## .i file, future checking of this rule during the same MAKE
@ -206,21 +219,23 @@ usrp_prims.h usrp_prims.py usrp_prims_python.cc: usrp_prims.i
exit $$?; \
fi;
$(DEPDIR)/usrp_prims-generate-guile-stamp:
if $(SWIG) $(STD_SWIG_GUILE_ARGS) $(usrp_prims_swig_args) \
-MD -MF $(DEPDIR)/usrp_prims.Std \
-module usrp_prims -o usrp_prims_guile.cc $(WHAT); then \
if test $(host_os) = mingw32; then \
$(RM) $(DEPDIR)/usrp_prims.Sd; \
$(SED) 's,\\\\,/,g' < $(DEPDIR)/usrp_prims.Std \
> $(DEPDIR)/usrp_prims.Sd; \
$(RM) $(DEPDIR)/usrp_prims.Std; \
$(MV) $(DEPDIR)/usrp_prims.Sd $(DEPDIR)/usrp_prims.Std; \
fi; \
# the comments for the target above apply to this target as well, but it seemed
# silly to include them twice. The only main change is for guile.
usrp_prims_guile.h usrp_prims.scm usrp_prims_guile.cc: usrp_prims.i
if GUILE
trap 'rm -rf $(DEPDIR)/usrp_prims-generate-*' 1 2 13 15; \
if mkdir $(DEPDIR)/usrp_prims-generate-lock 2>/dev/null; then \
rm -f $(DEPDIR)/usrp_prims-generate-*stamp; \
$(MAKE) $(AM_MAKEFLAGS) $(DEPDIR)/usrp_prims-generate-guile-stamp WHAT=$<; \
rmdir $(DEPDIR)/usrp_prims-generate-lock; \
else \
$(RM) $(DEPDIR)/usrp_prims.S*; exit 1; \
while test -d $(DEPDIR)/usrp_prims-generate-lock; do \
sleep 1; \
done; \
test -f $(DEPDIR)/usrp_prims-generate-guile-stamp; \
exit $$?; \
fi;
touch $(DEPDIR)/usrp_prims-generate-guile-stamp
endif # end of GUILE
$(DEPDIR)/usrp_prims-generate-python-stamp:
## This rule will be called only by the first process issuing the
@ -232,17 +247,17 @@ $(DEPDIR)/usrp_prims-generate-python-stamp:
## post-processing on 'mingw32' host OS for the dependency file.
##
if $(SWIG) $(STD_SWIG_PYTHON_ARGS) $(usrp_prims_swig_args) \
-MD -MF $(DEPDIR)/usrp_prims.Std \
-MD -MF $(DEPDIR)/usrp_prims_python.Std \
-module usrp_prims -o usrp_prims_python.cc $(WHAT); then \
if test $(host_os) = mingw32; then \
$(RM) $(DEPDIR)/usrp_prims.Sd; \
$(SED) 's,\\\\,/,g' < $(DEPDIR)/usrp_prims.Std \
> $(DEPDIR)/usrp_prims.Sd; \
$(RM) $(DEPDIR)/usrp_prims.Std; \
$(MV) $(DEPDIR)/usrp_prims.Sd $(DEPDIR)/usrp_prims.Std; \
$(RM) $(DEPDIR)/usrp_prims_python.Sd; \
$(SED) 's,\\\\,/,g' < $(DEPDIR)/usrp_prims_python.Std \
> $(DEPDIR)/usrp_prims_python.Sd; \
$(RM) $(DEPDIR)/usrp_prims_python.Std; \
$(MV) $(DEPDIR)/usrp_prims_python.Sd $(DEPDIR)/usrp_prims_python.Std; \
fi; \
else \
$(RM) $(DEPDIR)/usrp_prims.S*; exit 1; \
$(RM) $(DEPDIR)/usrp_prims_python.S*; exit 1; \
fi;
##
## Mess with the SWIG output .Std dependency file, to create a
@ -254,27 +269,27 @@ $(DEPDIR)/usrp_prims-generate-python-stamp:
##
## (1) remove the current dependency file
##
$(RM) $(DEPDIR)/usrp_prims.d
$(RM) $(DEPDIR)/usrp_prims_python.d
##
## (2) Copy the whole SWIG file:
##
cp $(DEPDIR)/usrp_prims.Std $(DEPDIR)/usrp_prims.d
cp $(DEPDIR)/usrp_prims_python.Std $(DEPDIR)/usrp_prims_python.d
##
## (3) all a carriage return to the end of the dependency file.
##
echo "" >> $(DEPDIR)/usrp_prims.d
echo "" >> $(DEPDIR)/usrp_prims_python.d
##
## (4) from the SWIG file, remove the first line (the target); remove
## trailing " \" and " " from each line. Append ":" to each line,
## followed by 2 carriage returns, then append this to the end of
## the dependency file.
##
$(SED) -e '1d;s, \\,,g;s, ,,g' < $(DEPDIR)/usrp_prims.Std | \
awk '{ printf "%s:\n\n", $$0 }' >> $(DEPDIR)/usrp_prims.d
$(SED) -e '1d;s, \\,,g;s, ,,g' < $(DEPDIR)/usrp_prims_python.Std | \
awk '{ printf "%s:\n\n", $$0 }' >> $(DEPDIR)/usrp_prims_python.d
##
## (5) remove the SWIG-generated file
##
$(RM) $(DEPDIR)/usrp_prims.Std
$(RM) $(DEPDIR)/usrp_prims_python.Std
##
## Create the stamp for this filename generation, to signal success in
## executing this rule; allows other threads waiting on this process
@ -286,5 +301,38 @@ $(DEPDIR)/usrp_prims-generate-python-stamp:
# not guaranteed to be portable, but will probably work. If it works,
# we have accurate dependencies for our swig stuff, which is good.
@am__include@ @am__quote@./$(DEPDIR)/usrp_prims.d@am__quote@
@am__include@ @am__quote@./$(DEPDIR)/usrp_prims_python.d@am__quote@
if GUILE
$(DEPDIR)/usrp_prims-generate-guile-stamp:
# the comments for the target above apply to this target as well, but it seemed
# silly to include them twice. The only main change is for guile.
if $(SWIG) $(STD_SWIG_GUILE_ARGS) $(usrp_prims_swig_args) \
-MD -MF $(DEPDIR)/usrp_prims_guile.Std \
-module usrp_prims -o usrp_prims_guile.cc $(WHAT); then \
if test $(host_os) = mingw32; then \
$(RM) $(DEPDIR)/usrp_prims_guile.Sd; \
$(SED) 's,\\\\,/,g' < $(DEPDIR)/usrp_prims_guile.Std \
> $(DEPDIR)/usrp_prims_guile.Sd; \
$(RM) $(DEPDIR)/usrp_prims_guile.Std; \
$(MV) $(DEPDIR)/usrp_prims_guile.Sd $(DEPDIR)/usrp_prims_guile.Std; \
fi; \
else \
$(RM) $(DEPDIR)/usrp_prims_guile.S*; exit 1; \
fi;
touch $(DEPDIR)/usrp_prims-generate-guile-stamp
$(RM) $(DEPDIR)/usrp_prims_guile.d
cp $(DEPDIR)/usrp_prims_guile.Std $(DEPDIR)/usrp_prims_guile.d
echo "" >> $(DEPDIR)/usrp_prims_guile.d
$(SED) -e '1d;s, \\,,g;s, ,,g' < $(DEPDIR)/usrp_prims_guile.Std | \
awk '{ printf "%s:\n\n", $$0 }' >> $(DEPDIR)/usrp_prims_guile.d
$(RM) $(DEPDIR)/usrp_prims_guile.Std
touch $(DEPDIR)/usrp_prims-generate-guile-stamp
else
touch $(DEPDIR)/usrp_prims-generate-guile-stamp
endif
@am__include@ @am__quote@./$(DEPDIR)/usrp_prims_guile.d@am__quote@
#gnuradio_swig_py_runtime_python.h: gnuradio_swig_py_runtime.i