https://github.com/cilium/cilium
Raw File
Tip revision: 9447cd1bfab4424ccb59b5ea9ca41f89590261d4 authored by André Martins on 19 July 2022, 10:22:00 UTC
Prepare for release v1.12.0
Tip revision: 9447cd1
Makefile
# Copyright 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