1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-02-02 15:09:23 -05:00
elinks/src/mime/backend/Makefile

25 lines
617 B
Makefile
Raw Normal View History

2005-10-19 22:00:35 -04:00
top_builddir=../../..
include $(top_builddir)/Makefile.config
2005-09-16 07:36:47 -04:00
OBJS-$(CONFIG_DGI) += dgi.o
OBJS-$(CONFIG_MAILCAP) += mailcap.o
OBJS-$(CONFIG_MIMETYPES) += mimetypes.o
2005-09-16 07:36:47 -04:00
OBJS = common.o default.o
2005-09-16 07:36:47 -04:00
#TEST_PROGS = \
# mailcap-cache$(EXEEXT)
# The dependencies are a bit funny here! I don't know why. Just remember to
# make clean before making the test. --jonas
2010-07-25 14:32:37 -04:00
mailcap-cache.o: $(top_srcdir)/src/mime/backend/mailcap.c
$(call cmd,compile,-DTEST_MAILCAP)
TESTDEPS = \
common.o \
$(top_builddir)/src/osdep/osdep.o
TESTDEPS-$(CONFIG_NLS) += $(top_builddir)/src/intl/gettext/lib.o
include $(top_srcdir)/Makefile.lib