-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
25 lines (17 loc) · 694 Bytes
/
Copy pathMakefile
File metadata and controls
25 lines (17 loc) · 694 Bytes
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
include nemu/Makefile.git
default:
@echo "Please run 'make' under any subprojects to compile."
clean:
-$(MAKE) -C nemu clean
-$(MAKE) -C nexus-am clean
-$(MAKE) -C nanos-lite clean
-$(MAKE) -C navy-apps clean
submit:
STUID=$(STUID) STUNAME=$(STUNAME) bash -c "$$(curl -s https://course.cunok.cn/pa/scripts/submit.sh)"
info:
STUID=$(STUID) STUNAME=$(STUNAME) bash -c "$$(curl -s https://course.cunok.cn/pa/scripts/info.sh)"
setup:
STUID=$(STUID) STUNAME=$(STUNAME) bash -c "$$(curl -s https://course.cunok.cn/pa/scripts/setup.sh)"
password:
STUID=$(STUID) STUNAME=$(STUNAME) bash -c "$$(curl -s https://course.cunok.cn/pa/scripts/password.sh)"
.PHONY: default clean submit