diff options
author | marino <marino@FreeBSD.org> | 2016-01-31 17:51:49 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2016-01-31 17:51:49 +0800 |
commit | bf596d3c4b2979d4cbd8dcfa42e70effbd024b0d (patch) | |
tree | 7f570448b03132cec78fdefe7cd9a2c35ee66b81 /games | |
parent | ac6f483d89b9ecdff3e2c712cab3faf8a2658ce2 (diff) | |
download | freebsd-ports-graphics-bf596d3c4b2979d4cbd8dcfa42e70effbd024b0d.tar.gz freebsd-ports-graphics-bf596d3c4b2979d4cbd8dcfa42e70effbd024b0d.tar.zst freebsd-ports-graphics-bf596d3c4b2979d4cbd8dcfa42e70effbd024b0d.zip |
games/quit: document ncurses requirement (USES+=ncurses), respect LDFLAGS
approved by: infrastructure blanket
Diffstat (limited to 'games')
-rw-r--r-- | games/quit/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/games/quit/Makefile b/games/quit/Makefile index 2feded3cc3e..e3343c1bb7d 100644 --- a/games/quit/Makefile +++ b/games/quit/Makefile @@ -12,11 +12,13 @@ COMMENT= Bicycle with trailers like "sl" MANLANG= ja +USES= ncurses + OPTIONS_DEFINE= DOCS do-build: ${CC} ${CFLAGS} ${CPPFLAGS} -o ${WRKSRC}/quit \ - ${WRKSRC}/quit.c -lncurses + ${WRKSRC}/quit.c ${LDFLAGS} -lncurses do-install: ${INSTALL_PROGRAM} ${WRKSRC}/quit ${STAGEDIR}${PREFIX}/bin |