src/world/lib/Makefile

17 lines
345 B
Makefile

# Makefile - hhl - /usr/src/world/lib
# Copyright 2020 Nathan Fisher <nfisher.sr@gmail.com>
#
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