diff options
Diffstat (limited to 'bootstrap/stage1/Makefile')
-rw-r--r-- | bootstrap/stage1/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/bootstrap/stage1/Makefile b/bootstrap/stage1/Makefile new file mode 100644 index 0000000..b09f1ad --- /dev/null +++ b/bootstrap/stage1/Makefile @@ -0,0 +1,16 @@ +SUBDIRS:=efi \ + +export ARCH VERSION DESTDIR SYS_INCLUDE + +.PHONY: all clean $(SUBDIRS) + +all: $(SUBDIRS) + +subdirs: $(SUBDIRS) + +$(SUBDIRS): + $(MAKE) $(MAKECMDGOALS) -C $@ + +clean: $(SUBDIRS) + +install: $(SUBDIRS) |