1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00
elinks/src/intl/Makefile
Jonas Fonseca c76586e6b8 Simplify the conditional building
Use the very cool 'VAR-$(CONFIG_FOO) += foo.o' feature instead of the more
verbose current ifeq($(CONFIG_FOO),yes) wrapping.
2005-09-27 22:49:47 +02:00

9 lines
147 B
Makefile

path_to_top=../..
include $(path_to_top)/Makefile.config
SUBDIRS-$(CONFIG_NLS) += gettext
OBJS = charsets.o
include $(path_to_top)/Makefile.lib