aboutsummaryrefslogtreecommitdiffstats
path: root/src/bpfswitch/Makefile
blob: 94a58c9add1a8bb3e96364544a477a6623a1ee3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# SPDX-License-Identifier: GPL-2.0

SUBDIRS = ksrc usrc

all:
	@for s in $(SUBDIRS); do \
		make -C $$s $(BUILDDIR) all; \
	done

clean:
	@for s in $(SUBDIRS); do \
		make -C $$s $(BUILDDIR) clean; \
	done