From b99dc8255b7c8cc0a16d753e2c3bb97f2a80d5bc Mon Sep 17 00:00:00 2001 From: Danny Holman Date: Thu, 27 Mar 2025 13:30:19 -0500 Subject: Initial commit --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7a92378 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +SUBDIRS:=volume1 \ + volume2 \ + +.PHONY: all clean $(SUBDIRS) + +all: $(SUBDIRS) + +subdirs: $(SUBDIRS) + +$(SUBDIRS): + $(MAKE) $(MAKECMDGOALS) -C $@ + +clean: $(SUBDIRS) -- cgit v1.2.3