diff options
author | Danny Holman <dholman@gymli.org> | 2025-03-27 13:30:19 -0500 |
---|---|---|
committer | Danny Holman <dholman@gymli.org> | 2025-03-27 13:43:31 -0500 |
commit | b99dc8255b7c8cc0a16d753e2c3bb97f2a80d5bc (patch) | |
tree | d640b2b5a22ea9b5a73f73366b7a041b63e90ca1 /Makefile | |
download | unix-book-b99dc8255b7c8cc0a16d753e2c3bb97f2a80d5bc.tar.gz unix-book-b99dc8255b7c8cc0a16d753e2c3bb97f2a80d5bc.tar.zst unix-book-b99dc8255b7c8cc0a16d753e2c3bb97f2a80d5bc.zip |
Initial commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
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) |