1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
Description: Removes tutorial check targets
Author: Lance Lin <lq27267@gmail.com>
Forwarded: not-needed
Last-Update: 2024-01-08
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -28,9 +28,6 @@
cd $(BUILD_DIR) && $(CMAKE3) $(ROOT_DIR)
endif
-tutorial: all
- make -C tutorial
-
check: all
make -C test check
@@ -48,9 +45,6 @@
ifeq ("$(WORKFLOW)","Found")
-make -C workflow clean
endif
- -make -C test clean
- -make -C tutorial clean
- -make -C benchmark clean
rm -rf $(DEFAULT_BUILD_DIR)
rm -rf _include
rm -rf _lib
|