diff options
Diffstat (limited to 'audio/emixer/files/Makefile')
-rw-r--r-- | audio/emixer/files/Makefile | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/audio/emixer/files/Makefile b/audio/emixer/files/Makefile index 9c78873dc3e..818aebd5a5f 100644 --- a/audio/emixer/files/Makefile +++ b/audio/emixer/files/Makefile @@ -1,16 +1,8 @@ -# $NetBSD: Makefile,v 1.4 2001/01/07 03:10:50 wiz Exp $ - -.if defined(NEED_NCURSES) && ${NEED_NCURSES} == "YES" -CFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -Wl,-R${LOCALBASE}/lib -lm -CURSESLIBS= -lncurses -.else -CURSESLIBS= -lcurses -.endif +# $NetBSD: Makefile,v 1.5 2001/06/19 15:57:39 jlam Exp $ all: emixer emixer: main.o - ${CC} ${LDFLAGS} -o ${.TARGET} ${.ALLSRC} ${CURSESLIBS} -lossaudio + ${CC} ${LDFLAGS} -o ${.TARGET} ${.ALLSRC} -lncurses -lossaudio install: ${BSD_INSTALL_PROGRAM} emixer ${PREFIX}/bin/emixer |