diff options
| author | Fuwn <[email protected]> | 2023-05-03 23:45:01 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-05-03 23:45:01 -0700 |
| commit | cb3b3d5dea2d21353aea2e5eb82d8bcb937483eb (patch) | |
| tree | 6170e45e491c74a858a9ef84ee2c39021eb17efd | |
| parent | feat: initial commit of weeks 1-4 (diff) | |
| download | cst120-cb3b3d5dea2d21353aea2e5eb82d8bcb937483eb.tar.xz cst120-cb3b3d5dea2d21353aea2e5eb82d8bcb937483eb.zip | |
build: no need for build_all target
| -rw-r--r-- | cst120/BUILD | 9 | ||||
| -rw-r--r-- | cst120/week_1/BUILD | 6 | ||||
| -rw-r--r-- | cst120/week_2/BUILD | 6 | ||||
| -rw-r--r-- | cst120/week_3/BUILD | 6 | ||||
| -rw-r--r-- | cst120/week_4/BUILD | 6 |
5 files changed, 0 insertions, 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"], -) |