CC = cl
# JIS, SJIS, EUC or NOKANJI
DEFAULT_KANJI_CODE = SJIS
CFLAGS = -I../libtxi -Doff_t=long -D_POSIX_VERSION \
	-DHAVE_MEMSET -DKANJI -DDEFAULT_KANJI_CODE=$(DEFAULT_KANJI_CODE)

all: texindex.exe

texindex.exe: texindex.c
	$(CC) $(CFLAGS) -Fe$@ texindex.c
