mirror of
https://github.com/versity/scoutfs.git
synced 2025-12-23 05:25:18 +00:00
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>
18 lines
319 B
Makefile
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:
|