17 lines
384 B
Makefile
17 lines
384 B
Makefile
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: clean
|
|
git gc
|
|
STUID=$(STUID) STUNAME=$(STUNAME) bash -c "$$(curl -s http://ics.nju.edu.cn/people/yanyanjiang/teach/submit.sh)"
|
|
|
|
.PHONY: default clean submit
|