1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-29 01:45:34 +00:00
elinks/src/terminal/Makefile
Witold Filipczyk c4cb7ed8e5 Beginnings of terminfo support.
--with-terminfo must be added for configure
and --terminfo to command line.
terminfo is only used for output and not all sequences are changed.
2017-11-19 18:29:38 +01:00

19 lines
274 B
Makefile

top_builddir=../..
include $(top_builddir)/Makefile.config
OBJS-$(CONFIG_MOUSE) += mouse.o
OBJS-$(CONFIG_TERMINFO) += terminfo.o
OBJS = \
color.o \
draw.o \
event.o \
hardio.o \
kbd.o \
screen.o \
tab.o \
terminal.o \
window.o
include $(top_srcdir)/Makefile.lib