1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-28 03:06:20 -04:00
elinks/src/terminal/Makefile
2005-09-16 13:23:05 +02:00

24 lines
315 B
Makefile

path_to_top=../..
include $(path_to_top)/Makefile.config
ifeq ($(CONFIG_MOUSE),yes)
mouseobj = mouse.o
endif
OBJS = \
color.o \
draw.o \
event.o \
hardio.o \
kbd.o \
$(mouseobj) \
screen.o \
tab.o \
terminal.o \
window.o
all-l: libterminal.a
libterminal.a: $(OBJS)
include $(path_to_top)/Makefile.lib