summaryrefslogtreecommitdiff
path: root/bootstrap/Makefile
blob: 92f4c3efd2655e101ebec5ef968fac235129f882 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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)