python: Silence irrelevant build warnings.
This commit is contained in:
parent
dfa4cd0e57
commit
8eb10b625e
11
Makefile.am
11
Makefile.am
|
@ -430,17 +430,18 @@ PDIR = bindings/python
|
||||||
|
|
||||||
python-build: $(PDIR)/timestamp
|
python-build: $(PDIR)/timestamp
|
||||||
|
|
||||||
|
python-cleanclean:
|
||||||
|
$(AM_V_at)cd $(PDIR) && python setup.py --quiet clean --all 2> >(grep -v "can't clean it")
|
||||||
|
|
||||||
$(PDIR)/timestamp: bindings/cxx/libsigrokxx.la $(PDIR)/sigrok/core/classes.i \
|
$(PDIR)/timestamp: bindings/cxx/libsigrokxx.la $(PDIR)/sigrok/core/classes.i \
|
||||||
$(library_include_HEADERS)
|
$(library_include_HEADERS) python-cleanclean
|
||||||
$(AM_V_at)cd $(PDIR) && python setup.py --quiet clean --all
|
$(AM_V_GEN)cd $(PDIR) && python setup.py --quiet build 2> >(grep -v "command line option.*Wstrict-prototypes")
|
||||||
$(AM_V_GEN)cd $(PDIR) && python setup.py --quiet build
|
|
||||||
$(AM_V_at)touch $(PDIR)/timestamp
|
$(AM_V_at)touch $(PDIR)/timestamp
|
||||||
|
|
||||||
python-install:
|
python-install:
|
||||||
cd $(PDIR) && python setup.py --quiet install --prefix $(prefix)
|
cd $(PDIR) && python setup.py --quiet install --prefix $(prefix)
|
||||||
|
|
||||||
python-clean:
|
python-clean: python-cleanclean
|
||||||
$(AM_V_at)cd $(PDIR) && python setup.py --quiet clean --all
|
|
||||||
$(AM_V_at)rm -f $(PDIR)/timestamp
|
$(AM_V_at)rm -f $(PDIR)/timestamp
|
||||||
|
|
||||||
BUILD_EXTRA += python-build
|
BUILD_EXTRA += python-build
|
||||||
|
|
Loading…
Reference in New Issue