8080695ecf
* [docker-{sonic,syncd}-vs]: upgrade sonic-vs and syncd-vs docker to stretch * remove python-click 6.6 Signed-off-by: Guohan Lu <gulv@microsoft.com>
21 lines
448 B
Makefile
21 lines
448 B
Makefile
# SONiC make file
|
|
|
|
NOSTRETCH ?= 0
|
|
|
|
%::
|
|
@echo "+++ --- Making $@ --- +++"
|
|
ifeq ($(NOSTRETCH), 0)
|
|
BLDENV=stretch EXTRA_STRETCH_TARGETS=$(notdir $@) make -f Makefile.work stretch
|
|
endif
|
|
make -f Makefile.work $@
|
|
|
|
stretch:
|
|
@echo "+++ Making $@ +++"
|
|
ifeq ($(NOSTRETCH), 0)
|
|
BLDENV=stretch make -f Makefile.work stretch
|
|
endif
|
|
|
|
clean reset init configure showtag sonic-slave-build sonic-slave-bash :
|
|
@echo "+++ Making $@ +++"
|
|
make -f Makefile.work $@
|