Update hw7 submission format

This commit is contained in:
Minseong Jang
2022-06-02 13:15:31 +09:00
parent 71b0c820f5
commit d3206a2b68
2 changed files with 3 additions and 2 deletions

View File

@@ -165,4 +165,4 @@ make run
## Submission
- Submit the corresponding files to [gg.kaist.ac.kr](https://gg.kaist.ac.kr).
- Run `./scripts/make-submissions.sh` to generate `hw2.zip` to `hw6.zip`, which you should submit for homework 2 to 6.
- Run `./scripts/make-submissions.sh` to generate `hw2.zip` to `final.zip`, which you should submit for homework 2 to final project.

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Clears the previous submissions.
rm -rf hw2.zip hw3.zip hw4.zip hw5.zip hw6.zip
rm -rf hw2.zip hw3.zip hw4.zip hw5.zip hw6.zip hw7.zip
# Creates new submissions.
zip hw2.zip -j src/c/write_c.rs src/irgen/mod.rs
@@ -9,4 +9,5 @@ zip hw3.zip -j src/opt/opt_utils.rs src/opt/simplify_cfg.rs
zip hw4.zip -j src/opt/opt_utils.rs src/opt/mem2reg.rs
zip hw5.zip -j src/opt/opt_utils.rs src/opt/gvn.rs
zip hw6.zip -j src/opt/opt_utils.rs src/opt/deadcode.rs
zip hw7.zip -j src/asmgen/*.rs
zip final.zip -r src/