From cea8c0e64c6edda56bd4a3c40fb49ffdc2059b2a Mon Sep 17 00:00:00 2001 From: Steve Karg Date: Fri, 21 May 2021 09:00:21 -0500 Subject: [PATCH] Added ethernet target for Makefile and Travis (#173) Co-authored-by: Steve Karg --- .travis.yml | 4 ++++ Makefile | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.travis.yml b/.travis.yml index 4ef2076a..31ce347e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -53,6 +53,10 @@ jobs: os: linux compiler: gcc script: make clean mstp + - stage: ethernet-build + os: linux + compiler: gcc + script: make clean ethernet - stage: lint os: linux compiler: clang diff --git a/Makefile b/Makefile index 961408b4..b0f716ae 100644 --- a/Makefile +++ b/Makefile @@ -29,6 +29,10 @@ bip6-win32: bip6: $(MAKE) BACDL=bip6 -C apps all +.PHONY: ethernet +ethernet: + $(MAKE) BACDL=ethernet -C apps all + .PHONY: apps apps: $(MAKE) -s -C apps all