all:	icutest_csconv icutest_iconv
clean:
	/bin/rm	icutest_csconv icutest_iconv

icutest_csconv:	icutest4linux.c
	gcc -g -fno-strength-reduce -ansi -pedantic \
	-I../.. \
	-Dlinux -D__i386__ -D_POSIX_SOURCE -D_BSD_SOURCE -D_SVID_SOURCE \
	-DX_LOCALE  -DUSE_CAND_SELECTION -D_XOPEN_SOURCE -DFUNCPROTO=15 \
	-DNARROWPROTO  -DMALLOC_0_RETURNS_NULL  -DSUNSOFT icutest4linux.c \
	-ldl -L/usr/X11R6/lib \
	-o icutest_csconv -DUSE_CSCONV

icutest_iconv:	icutest4linux.c
	gcc -g -fno-strength-reduce -ansi -pedantic \
	-I../.. \
	-D_POSIX_SOURCE -D_BSD_SOURCE -D_SVID_SOURCE \
	-DX_LOCALE  -DUSE_CAND_SELECTION -D_XOPEN_SOURCE -DFUNCPROTO=15 \
	-DNARROWPROTO  -DMALLOC_0_RETURNS_NULL  -DSUNSOFT icutest4linux.c \
	-ldl -o icutest_iconv -DUSE_ICONV
