first commit
This commit is contained in:
15
Makefile
Normal file
15
Makefile
Normal file
@@ -0,0 +1,15 @@
|
||||
BDIR = build
|
||||
SUBDIRS = biosboot boot mbr installboot installmbr
|
||||
|
||||
all: $(BDIR) $(SUBDIRS)
|
||||
|
||||
$(BDIR):
|
||||
mkdir -p $(BDIR)
|
||||
|
||||
clean: $(SUBDIRS)
|
||||
rm -rf $(BDIR)
|
||||
|
||||
$(SUBDIRS):
|
||||
@make -sC $@ $(MAKECMDGOALS) BDIR=$(PWD)/$(BDIR) IDIR=$(PWD)
|
||||
|
||||
.PHONY: biosboot boot installboot mbr installmbr
|
||||
Reference in New Issue
Block a user