mirror of
https://github.com/rkd77/elinks.git
synced 2025-06-30 22:19:29 -04:00
14 lines
277 B
Makefile
14 lines
277 B
Makefile
path_to_top=../../..
|
|
include $(path_to_top)/Makefile.config
|
|
|
|
ifeq ($(CONFIG_XBEL_BOOKMARKS),yes)
|
|
xbelobj = xbel.o
|
|
endif
|
|
|
|
OBJS = common.o default.o $(xbelobj)
|
|
|
|
# Do not forget to also add the .o to ../Makefile. Yes, it sucks.
|
|
all-l: $(OBJS)
|
|
|
|
include $(path_to_top)/Makefile.lib
|