From cb3b3d5dea2d21353aea2e5eb82d8bcb937483eb Mon Sep 17 00:00:00 2001 From: Fuwn Date: Wed, 3 May 2023 23:45:01 -0700 Subject: build: no need for build_all target --- cst120/BUILD | 9 --------- cst120/week_1/BUILD | 6 ------ cst120/week_2/BUILD | 6 ------ cst120/week_3/BUILD | 6 ------ cst120/week_4/BUILD | 6 ------ 5 files changed, 33 deletions(-) diff --git a/cst120/BUILD b/cst120/BUILD index fa2d79e..e69de29 100644 --- a/cst120/BUILD +++ b/cst120/BUILD @@ -1,9 +0,0 @@ -filegroup( - name = "build_all", - srcs = [ - "//cst120/week_1:build_all", - "//cst120/week_2:build_all", - "//cst120/week_3:build_all", - "//cst120/week_4:build_all", - ], -) diff --git a/cst120/week_1/BUILD b/cst120/week_1/BUILD index aacb901..ac3400f 100644 --- a/cst120/week_1/BUILD +++ b/cst120/week_1/BUILD @@ -7,9 +7,3 @@ cc_binary( name = "quiz_1_program_part", srcs = ["quiz_1_program_part.c"], ) - -filegroup( - name = "build_all", - srcs = ["homework_1", "quiz_1_program_part"], - visibility = ["//visibility:public"], -) diff --git a/cst120/week_2/BUILD b/cst120/week_2/BUILD index 8ea3568..c873fb2 100644 --- a/cst120/week_2/BUILD +++ b/cst120/week_2/BUILD @@ -12,9 +12,3 @@ cc_binary( name = "quiz_2_program_part", srcs = ["quiz_2_program_part.c"], ) - -filegroup( - name = "build_all", - srcs = ["homework_2_1", "homework_2_2", "quiz_2_program_part"], - visibility = ["//visibility:public"], -) diff --git a/cst120/week_3/BUILD b/cst120/week_3/BUILD index fcce486..0ebbb42 100644 --- a/cst120/week_3/BUILD +++ b/cst120/week_3/BUILD @@ -7,9 +7,3 @@ cc_binary( name = "quiz_3_program_part", srcs = ["quiz_3_program_part.c"], ) - -filegroup( - name = "build_all", - srcs = ["homework_3", "quiz_3_program_part"], - visibility = ["//visibility:public"], -) diff --git a/cst120/week_4/BUILD b/cst120/week_4/BUILD index 7694c5e..b8cce91 100644 --- a/cst120/week_4/BUILD +++ b/cst120/week_4/BUILD @@ -2,9 +2,3 @@ cc_binary( name = "quiz_4_program_part", srcs = ["quiz_4_program_part.c"], ) - -filegroup( - name = "build_all", - srcs = ["quiz_4_program_part"], - visibility = ["//visibility:public"], -) -- cgit v1.2.3