-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile
44 lines (30 loc) · 960 Bytes
/
makefile
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
rename_submissions:
python extract_friends.py 1 submissions
unzip_files:
python extract_friends.py 2 submissions
get_students:
make rename_submissions &&\
make unzip_files &&\
python extract_friends.py 0 submissions 312AB students.txt
select_naughty:
python extract_friends.py 3
remove_not_archive:
python extract_friends.py 4 submissions
prepare_all:
make get_students &&\
python extract_friends.py 5 312AB src
prepare_for_grading:
make get_students &&\
python extract_friends.py 6 312AB
prepare_for_grading_all:
make rename_submissions &&\
make unzip_files &&\
python extract_friends.py 6 submissions
get_grades:
python extract_friends.py 7 $(xlsx).xlsx students.txt $(output).txt
grade_our:
python extract_friends.py 8 $(submissions) $(sandbox) $(output).txt $(command)
to_grade:
python extract_friends.py 9 $(submissions) $(list).txt
clean:
python extract_friends.py 1000