From: Michal Sojka Date: Tue, 6 Mar 2018 07:41:01 +0000 (+0100) Subject: Makefile: Add shortcut targets X-Git-Url: http://rtime.felk.cvut.cz/gitweb/hercules2020/kcf.git/commitdiff_plain/f3ba26301280434ad75efb15b60112b50a9a2e2e Makefile: Add shortcut targets Now, one can run just 'make cufftw' to compile the particular variant. --- diff --git a/Makefile b/Makefile index 18388de..836f867 100644 --- a/Makefile +++ b/Makefile @@ -19,5 +19,7 @@ build-%/kcf_vot: $(shell git ls-files) cd $(@D) && cmake $(CMAKE_OPTS) $(CMAKE_OTPS_$*) .. cmake --build $(@D) +$(BUILDS): %: build-%/kcf_vot + clean: rm -rf $(BUILDS:%=build-%)