projects
/
pintos-anon
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Pass return code from main() to exit().
[pintos-anon]
/
src
/
Makefile.kernel
1
include Makefile.vars
2
BUILD_SUBDIRS = $(addprefix build/, $(SUBDIRS))
3
CP = cp
4
MKDIR = mkdir
5
6
all: build build/Makefile $(BUILD_SUBDIRS)
7
$(MAKE) -C build
8
9
$(BUILD_SUBDIRS):
10
$(MKDIR) $@
11
build:
12
$(MKDIR) $@
13
build/Makefile: ../Makefile.build
14
$(CP) $< $@
15
16
clean:
17
rm -rf build