blob: 04d2c8b88447577fdb7cbc7d01b6c7bdabdf5a3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
# GNU make and BSD make compatible make file wrapper
MAKECMDGOALS+= ${.TARGETS}
PHONY_TARGETS= all v \
allmodconfig allnoconfig allyesconfig \
help pkg-help dev-help targethelp \
kernelconfig savekconfig \
image \
menuconfig defconfig oldconfig \
download \
clean cleankernel cleansystem cleandir distclean hostclean \
hostpackage fetch package extract patch \
dep menu \
newpackage \
host-update-patches update-patches \
info
${PHONY_TARGETS}:
@./scripts/prereq.sh ${MAKECMDGOALS}
.PHONY: ${PHONY_TARGETS}
|