https://github.com/cilium/cilium
Raw File
Tip revision: efc15cd3a13f627f423ffeaf8bb1782c71d4ac61 authored by Joe Stringer on 28 April 2021, 00:45:59 UTC
Prepare for release v1.10.0-rc1
Tip revision: efc15cd
Makefile
# Copyright 2017-2019 Authors of Cilium
# SPDX-License-Identifier: Apache-2.0

include ../Makefile.defs

SUBDIRS := alignchecker maptool

.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