# Makefile - hhl - /usr/src/world/lib # Copyright 2020 Nathan Fisher # subdirs = $(shell find . -maxdepth 1 -mindepth 1 -type d) export exec_prefix = all: ${subdirs} ${subdirs}: $(MAKE) ${makeflags} -C $@ clean: for dir in ${subdirs} ; do $(MAKE) -C $${dir} clean ; done .PHONY: all ${subdirs} clean