diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..7bb70a14 --- /dev/null +++ b/Makefile @@ -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: