freebsd-dev/sys/modules/syscons/Makefile
Dag-Erling Smørgrav a50b01d224 17 years and change after I wrote warp_saver, here's a simple plasma effect
(currently only three circular patterns) which requires quite a bit of
fixed-point arithmetic, including sqrt() and cos().  Happy New Year!
2016-01-01 04:04:40 +00:00

37 lines
471 B
Makefile

# $FreeBSD$
SUBDIR= ${_apm} \
${_beastie} \
blank \
${_daemon} \
${_dragon} \
fade \
${_fire} \
green \
${_logo} \
${_plasma} \
${_rain} \
${_snake} \
${_star} \
${_warp}
.if ${MACHINE_CPUARCH} == "i386"
_apm= apm
.endif
.if ${MACHINE_CPUARCH} != "sparc64"
_beastie= beastie
_beastie= beastie
_daemon= daemon
_dragon= dragon
_fire= fire
_logo= logo
_plasma= plasma
_rain= rain
_snake= snake
_star= star
_warp= warp
.endif
.include <bsd.subdir.mk>