Files
scoutfs/Makefile
Zach Brown e648063baa Add simple top-level Makefile
Add a trivial top-level Makefile that just runs Make in all the subdirs.
This will probably expand over time.

Signed-off-by: Zach Brown <zab@versity.com>
2020-12-07 10:39:20 -08:00

18 lines
319 B
Makefile

#
# Typically development is done in each subdir, but we have a tiny
# makefile here to make it easy to run simple targets across all the
# subdirs.
#
SUBDIRS := kmod utils tests
NOTTESTS := kmod utils
all clean: $(SUBDIRS) FORCE
dist: $(NOTTESTS) FORCE
$(SUBDIRS): FORCE
$(MAKE) -C $@ $(MAKECMDGOALS)
all:
FORCE: