mirror of
https://github.com/rkd77/elinks.git
synced 2025-01-03 14:57:44 -05:00
26 lines
398 B
Makefile
26 lines
398 B
Makefile
|
path_to_top=../..
|
||
|
include $(path_to_top)/Makefile.config
|
||
|
|
||
|
SUBDIRS = backend
|
||
|
|
||
|
ifeq ($(CONFIG_MAILCAP),yes)
|
||
|
mailcapobj = backend/mailcap.o
|
||
|
endif
|
||
|
|
||
|
ifeq ($(CONFIG_MIMETYPES),yes)
|
||
|
mimetypesobj = backend/mimetypes.o
|
||
|
endif
|
||
|
|
||
|
OBJS = \
|
||
|
dialogs.o \
|
||
|
mime.o \
|
||
|
backend/common.o \
|
||
|
backend/default.o \
|
||
|
$(mailcapobj) \
|
||
|
$(mimetypesobj)
|
||
|
|
||
|
all-l: libmime.a
|
||
|
libmime.a: $(OBJS)
|
||
|
|
||
|
include $(path_to_top)/Makefile.lib
|