https://github.com/cilium/cilium
Raw File
Tip revision: 08521c9ede4b3e41d674c2321a4eacef8ef21cbd authored by Joe Stringer on 10 June 2022, 22:15:43 UTC
Prepare for release v1.10.12
Tip revision: 08521c9
Makefile
# Copyright 2017-2021 Authors of Cilium
# SPDX-License-Identifier: Apache-2.0

include ../Makefile.defs

SUBDIRS := alignchecker maptool mount

.PHONY: all $(SUBDIRS) clean install

all: $(SUBDIRS)

$(SUBDIRS): force
	@ $(MAKE) -C $@ all

clean:
	for i in $(SUBDIRS); do $(MAKE) -C $$i clean; done

install:
	for i in $(SUBDIRS); do $(MAKE) -C $$i install; done

.PHONY: force
force :;
back to top