mirror of
https://github.com/corundum/corundum.git
synced 2025-01-16 08:12:53 +08:00
448fa8eb4c
Signed-off-by: Alex Forencich <alex@alexforencich.com>
14 lines
274 B
Makefile
14 lines
274 B
Makefile
# SPDX-License-Identifier: BSD-2-Clause-Views
|
|
# Copyright (c) 2020-2023 The Regents of the University of California
|
|
|
|
TOPTARGETS := all clean
|
|
|
|
SUBDIRS := $(wildcard */.)
|
|
|
|
$(TOPTARGETS): $(SUBDIRS)
|
|
$(SUBDIRS):
|
|
$(MAKE) -C $@ $(MAKECMDGOALS)
|
|
|
|
.PHONY: $(TOPTARGETS) $(SUBDIRS)
|
|
|