mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-03 08:07:17 -05: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
|