From d2e4ea03e777662dd15440c5037532edeeda466f Mon Sep 17 00:00:00 2001 From: "paul.albuquer" <paul.albuquerque@hesge.ch> Date: Sat, 13 Nov 2021 19:04:52 +0100 Subject: [PATCH] added Makefile for building all sorting algo in directory --- source_codes/sorting/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 source_codes/sorting/Makefile diff --git a/source_codes/sorting/Makefile b/source_codes/sorting/Makefile new file mode 100644 index 0000000..0ff2c06 --- /dev/null +++ b/source_codes/sorting/Makefile @@ -0,0 +1,9 @@ +TOPTARGETS := all clean + +SUBDIRS := $(wildcard */.) + +$(TOPTARGETS): $(SUBDIRS) +$(SUBDIRS): + $(MAKE) -C $@ $(MAKECMDGOALS) + +.PHONY: $(TOPTARGETS) $(SUBDIRS) -- GitLab