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