https://github.com/cilium/cilium
Raw File
Tip revision: ad1655800fe2b50eee044e658e1c3bb80a28a97b authored by Joe Stringer on 13 February 2023, 08:03:24 UTC
Prepare for release v1.10.20
Tip revision: ad16558
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