Module Name: src Committed By: cjep Date: Sat May 8 14:11:37 UTC 2021
Modified Files: src/usr.bin/aiomixer: Makefile Log Message: Also include terminfo for platforms with static libraries (e.g. sun2). From uwe/nia. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/usr.bin/aiomixer/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/usr.bin/aiomixer/Makefile diff -u src/usr.bin/aiomixer/Makefile:1.1 src/usr.bin/aiomixer/Makefile:1.2 --- src/usr.bin/aiomixer/Makefile:1.1 Fri May 7 16:29:24 2021 +++ src/usr.bin/aiomixer/Makefile Sat May 8 14:11:37 2021 @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.1 2021/05/07 16:29:24 nia Exp $ +# $NetBSD: Makefile,v 1.2 2021/05/08 14:11:37 cjep Exp $ PROG= aiomixer SRCS+= main.c draw.c parse.c -LDADD+= -lcurses -DPADD+= $(LIBCURSES) +LDADD+= -lcurses -lterminfo +DPADD+= ${LIBCURSES} ${LIBTERMINFO} WARNS= 6