mirror of
https://github.com/rkd77/elinks.git
synced 2025-10-21 19:54:04 -04:00
21 lines
270 B
Makefile
21 lines
270 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
|
||
|
|
|
||
|
|
include $(path_to_top)/Makefile.lib
|