1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-10-17 06:24:12 -04:00
elinks/src/encoding/Makefile

14 lines
272 B
Makefile
Raw Normal View History

2005-10-19 22:00:35 -04:00
top_builddir=../..
include $(top_builddir)/Makefile.config
2005-09-16 06:05:51 -04:00
OBJS-$(CONFIG_BROTLI) += brotli.o
OBJS-$(CONFIG_BZIP2) += bzip2.o
2021-12-23 09:39:42 -05:00
OBJS-$(CONFIG_GZIP) += gzip.o
OBJS-$(CONFIG_LZMA) += lzma.o
2019-07-14 12:54:39 -04:00
OBJS-$(CONFIG_ZSTD) += zstd.o
2005-09-16 06:05:51 -04:00
OBJS = encoding.o
2005-09-16 06:05:51 -04:00
include $(top_srcdir)/Makefile.lib