1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-28 01:35:32 +00:00
elinks/src/terminal/Makefile
2005-09-27 21:11:28 +02:00

24 lines
319 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-local: libterminal.a
libterminal.a: $(OBJS)
include $(path_to_top)/Makefile.lib