mirror of
https://github.com/rkd77/elinks.git
synced 2025-02-02 15:09:23 -05:00
24 lines
319 B
Makefile
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
|