comparison arogue5/Makefile.in @ 222:a666e4a034ed

Fix curses library detection. A custom autoconf macro searched for the curses library, and provided an option to use ncurses instead of a (presumably deficient) curses implementation. Unfortunately, some of the Makefiles ignored the search's results. Now that this is fixed, building against pdcurses should be easier too.
author John "Elwin" Edwards
date Fri, 12 Feb 2016 15:12:37 -0500
parents 97f8fdf9595c
children 4d0f53998e8a
comparison
equal deleted inserted replaced
221:71cb5b647f2b 222:a666e4a034ed
52 DOCS= arogue58.doc arogue58.html 52 DOCS= arogue58.doc arogue58.html
53 53
54 CC = gcc 54 CC = gcc
55 CPPFLAGS =@DEFS@ 55 CPPFLAGS =@DEFS@
56 CFLAGS= 56 CFLAGS=
57 CRLIB = -lcurses 57 CRLIB = @LIBS@
58 RM = rm -f 58 RM = rm -f
59 TAR = tar 59 TAR = tar
60 INSTALL=@INSTALL@ 60 INSTALL=@INSTALL@
61 .SUFFIXES: .obj 61 .SUFFIXES: .obj
62 62