blob: cc6dd7adb10ee8ada47eaa6e4cccd6abfb9d0914 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
ifeq ($(subdir),wcsmbs)
sysdep_routines += wmemcmp wmemcmp-vx wmemcmp-c
endif
ifeq ($(subdir),iconvdata)
override define generate-8bit-table
$(make-target-directory)
LC_ALL=C $(SHELL) ./gen-8bit.sh $< > $(@:stmp=T)
LC_ALL=C $(SHELL) ../sysdeps/s390/multiarch/gen-8bit.sh $< >> $(@:stmp=T)
$(move-if-change) $(@:stmp=T) $(@:stmp=h)
touch $@
endef
endif
ifeq ($(subdir),iconv)
sysdep_routines += gconv_simple
endif
|