358d93eeb5
- add sonic-slave-buster docker - remove debhelper from buster backports debhelper in buster is enough to build smartmontools 6.6 Signed-off-by: Guohan Lu <lguohan@gmail.com>
27 lines
541 B
Makefile
27 lines
541 B
Makefile
# SONiC make file
|
|
|
|
NOJESSIE ?= 0
|
|
|
|
%::
|
|
@echo "+++ --- Making $@ --- +++"
|
|
ifeq ($(NOJESSIE), 0)
|
|
EXTRA_JESSIE_TARGETS=$(notdir $@) make -f Makefile.work jessie
|
|
endif
|
|
BLDENV=stretch make -f Makefile.work $@
|
|
|
|
jessie:
|
|
@echo "+++ Making $@ +++"
|
|
ifeq ($(NOJESSIE), 0)
|
|
make -f Makefile.work jessie
|
|
endif
|
|
|
|
buster:
|
|
BLDENV=buster make -f Makefile.work
|
|
|
|
clean reset init configure showtag sonic-slave-build sonic-slave-bash :
|
|
@echo "+++ Making $@ +++"
|
|
ifeq ($(NOJESSIE), 0)
|
|
make -f Makefile.work $@
|
|
endif
|
|
BLDENV=stretch make -f Makefile.work $@
|