fe33aa2786
- sys/arch/evbarm64 is gone and integrated into sys/arch/evbarm. (by skrll@) - add support fdt. evbarm/conf/GENERIC64 fdt (bcm2837,sunxi,tegra) based generic 64bit kernel config. (by skrll@, jmcneill@)
16 lines
296 B
Makefile
16 lines
296 B
Makefile
# $NetBSD: Makefile,v 1.6 2018/04/01 04:35:06 ryo Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.if ${MACHINE_CPU} == "aarch64" || \
|
|
${MACHINE_CPU} == "arm" || \
|
|
${MACHINE} == "hpcmips" || \
|
|
${MACHINE} == "hpcsh"
|
|
PROG= tpctl
|
|
SRCS= main.c fb.c tp.c data.c
|
|
.endif
|
|
|
|
MAN= tpctl.8
|
|
|
|
.include <bsd.prog.mk>
|