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

15 lines
240 B
Makefile
Raw Normal View History

2005-09-16 06:05:51 -04:00
path_to_top=../..
include $(path_to_top)/Makefile.config
ifeq ($(CONFIG_BZIP2),yes)
bzip2obj = bzip2.o
endif
ifeq ($(CONFIG_GZIP),yes)
gzipobj = gzip.o
endif
OBJS = encoding.o $(bzip2obj) $(gzipobj)
2005-09-16 06:05:51 -04:00
include $(path_to_top)/Makefile.lib