1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-01-03 14:57:44 -05:00
elinks/src/mime/Makefile

26 lines
398 B
Makefile
Raw Normal View History

2005-09-16 07:36:47 -04:00
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