Mercurial > hg > early-roguelike
comparison srogue/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 |
---|---|
42 MISC= Makefile LICENSE.TXT rogue.nr | 42 MISC= Makefile LICENSE.TXT rogue.nr |
43 | 43 |
44 CC = gcc | 44 CC = gcc |
45 CFLAGS= | 45 CFLAGS= |
46 CPPFLAGS=@DEFS@ | 46 CPPFLAGS=@DEFS@ |
47 CRLIB = -lcurses | 47 CRLIB = @LIBS@ |
48 RM = rm -f | 48 RM = rm -f |
49 TAR = tar | 49 TAR = tar |
50 INSTALL=@INSTALL@ | 50 INSTALL=@INSTALL@ |
51 | 51 |
52 $(PROGRAM): $(HDRS) $(OBJS) | 52 $(PROGRAM): $(HDRS) $(OBJS) |