aboutsummaryrefslogtreecommitdiff
blob: 26e00a10b64eff57d4024a504335237092385a0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
MAKEFILE_DIR?=./

include ${MAKEFILE_DIR}/environment.mk
include ${MAKEFILE_DIR}/cache.mk
include ${MAKEFILE_DIR}/stage1.mk
include ${MAKEFILE_DIR}/stage2.mk

#include ${STAGE2_MAKEFILE}

.PHONY: all build clean

all: build

build: stage2 post-stage2

clean: clean-cache clean-stage1 clean-stage2