mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
27 lines
349 B
Makefile
27 lines
349 B
Makefile
|
path_to_top=../..
|
||
|
include $(path_to_top)/Makefile.config
|
||
|
|
||
|
ifeq ($(CONFIG_LEDS),yes)
|
||
|
ledsobj = leds.o
|
||
|
endif
|
||
|
|
||
|
OBJS = \
|
||
|
button.o \
|
||
|
checkbox.o \
|
||
|
dialog.o \
|
||
|
group.o \
|
||
|
hierbox.o \
|
||
|
hotkey.o \
|
||
|
inpfield.o \
|
||
|
inphist.o \
|
||
|
$(ledsobj) \
|
||
|
listbox.o \
|
||
|
listmenu.o \
|
||
|
menu.o \
|
||
|
msgbox.o \
|
||
|
style.o \
|
||
|
text.o \
|
||
|
widget.o
|
||
|
|
||
|
include $(path_to_top)/Makefile.lib
|