9b934d0930
I initially committed libteken to sys/dev/syscons/teken, but now that I'm working on a console driver myself, I noticed this was not a good decision. Move it to sys/teken to make it easier for other drivers to use a terminal emulator. Also list teken.c in sys/conf/files, instead of listing it in all the files.arch files separately.
14 lines
260 B
Makefile
14 lines
260 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= teken_demo
|
|
SRCS= teken_demo.c teken.c teken_state.h
|
|
CLEANFILES= teken_state.h teken.log
|
|
LDADD= -lncurses -lutil
|
|
NO_MAN=
|
|
WARNS?= 6
|
|
|
|
teken_state.h: gensequences sequences
|
|
awk -f gensequences sequences > ${.TARGET}
|
|
|
|
.include <bsd.prog.mk>
|