mirror of
https://github.com/versity/scoutfs.git
synced 2025-12-23 13:35:18 +00:00
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>
This commit is contained in:
17
Makefile
Normal file
17
Makefile
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
#
|
||||||
|
# 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:
|
||||||
Reference in New Issue
Block a user