This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
27 lines
509 B
Makefile
27 lines
509 B
Makefile
# $NetBSD: Makefile,v 1.29 2013/11/12 17:46:20 mbalmer Exp $
|
|
# @(#)Makefile 8.3 (Berkeley) 7/24/94
|
|
|
|
# Missing: dungeon warp
|
|
# Moved: chess
|
|
# Don't belong: xneko xroach
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
#MINIX: Not everything yet
|
|
SUBDIR= adventure arithmetic \
|
|
banner bcd \
|
|
colorbars caesar \
|
|
factor fish fortune \
|
|
monop morse number \
|
|
pig ppt primes \
|
|
rain random rogue snake tetris \
|
|
wargames
|
|
|
|
.if !defined(__MINIX)
|
|
.if ${MKCXX} != "no"
|
|
SUBDIR+= dab
|
|
.endif
|
|
.endif # !defined(__MINIX)
|
|
|
|
.include <bsd.subdir.mk>
|