17 lines
332 B
Makefile
17 lines
332 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
|
|
cd .. && tar cj $(shell basename `pwd`) > $(STU_ID).tar.bz2
|
|
|
|
.PHONY: default clean submit
|