comparison rogue3/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 0e99eade579c
comparison
equal deleted inserted replaced
221:71cb5b647f2b 222:a666e4a034ed
55 CC = gcc 55 CC = gcc
56 CPPFLAGS =@DEFS@ 56 CPPFLAGS =@DEFS@
57 ROPTS = 57 ROPTS =
58 COPTS = 58 COPTS =
59 CFLAGS= $(COPTS) $(ROPTS) 59 CFLAGS= $(COPTS) $(ROPTS)
60 LIBS = -lcurses 60 LIBS = @LIBS@
61 RM = rm -f 61 RM = rm -f
62 LD = $(CC) 62 LD = $(CC)
63 LDOUT = -o 63 LDOUT = -o
64 INSTALL=@INSTALL@ 64 INSTALL=@INSTALL@
65 65