1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-15 23:35:34 +00:00
elinks/src/terminal/Makefile
Witold Filipczyk d606aca351 [terminal] terminal.cpp -> terminal.c
hash from util instead of C++ map
2023-11-25 18:08:46 +01:00

20 lines
309 B
Makefile

top_builddir=../..
include $(top_builddir)/Makefile.config
OBJS-$(CONFIG_MOUSE) += mouse.o
OBJS-$(CONFIG_LIBSIXEL) += sixel.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