################################################
#
#Last changed 051230, Oscar Tckstrm
#

CPPC = g++ # c++-kompilator
CC   = gcc # c-kompilator
WARN = -Wall
DEBUG_FLAGS = -g -DENSURE -pipe
RELEASE_FLAGS = -O2 -pipe

CFLAGS = $(RELEASE_FLAGS) $(WARN)# gemensamma instllningar
#CFLAGS = $(DEBUG_FLAGS) $(WARN)# gemensamma instllningar

#
#  Directories and paths
#
CD = common# common files directory
TD = tagger# tagger files directory
TOD = token# tokenizer files directory
FLAGS = $(CFLAGS) -I$(CD) -I$(TD) -I$(TOD) $(INCL) -Idevelopers-tagger 

TOK_OBJ = $(TOD)/tokenizer.o

COMMON_OBJ = $(CD)/file.o $(CD)/message.o $(CD)/timer.o

TAGGER_OBJ = $(TD)/hashscatter.o $(TD)/inflectlexicon.o\
  $(TD)/inflectrule.o $(TD)/letter.o $(TD)/lexicon.o\
  $(TD)/morflexicon.o $(TD)/newwordlexicon.o $(TD)/sentence.o\
  $(TD)/settings.o $(TD)/tag.o $(TD)/tagger.o $(TD)/taglexicon.o\
  $(TD)/text.o $(TD)/word.o $(TD)/wordlexicon.o $(TD)/wordtag.o\
  $(TD)/wordtoken.o
TAGGER_FLAGS = -DPROB_DOUBLE -DTIMER -DMESSAGES
TAGG_OBJ = $(CD)/file.o $(CD)/message.o $(CD)/timer.o $(TD)/main.o $(TOK_OBJ) $(TAGGER_OBJ)

DTD = developers-tagger
DEVELOPERS_TAGGER_OBJ=$(DTD)/main.o $(DTD)/developers-tagger.o $(DTD)/settings_manip.o
DEVELOPERS_TAGGER_FLAGS=-DDEVELOPERS
DEVELOPERS_HELPER_OBJ=$(DEVELOPERS_TAGGER_OBJ) $(TOK_OBJ) $(TAGGER_OBJ) $(CD)/file.o $(CD)/message.o $(CD)/timer.o
DEVELOPERS_TAGG_OBJ = $(patsubst %.o, %.do, $(DEVELOPERS_HELPER_OBJ))

FREQSTATMORF_OBJ = lexicon-tools/freqstatmorf.o $(CD)/file.o $(CD)/message.o $(CD)/timer.o $(TOK_OBJ) $(TAGGER_OBJ)

ALL_OBJ = $(COMMON_OBJ) $(TOK_OBJ) $(TAGGER_OBJ)
ALL_FLAGS = $(FLAGS) $(COMMON_FLAGS) $(TOK_FLAGS) $(TAGGER_FLAGS)
# do not use $(DEVELOPERS_TAGGER_FLAGS) unless building developers tagger (defines optConst, CheckHash)

FLEX = flex -f -8

TARGETS = tagg developers-tagg freqstatmorf wt2tt wt2ttt

all: $(TARGETS)

freqstatmorf: $(FREQSTATMORF_OBJ) 
	$(CPPC) $(FLAGS) -o $@ $^ $(LIB_PATH) $(LIBS)

developers-tagg: $(DEVELOPERS_TAGG_OBJ)
	$(CPPC) $(FLAGS) -o $@ $^ $(LIB_PATH) $(LIBS)

tagg: $(TAGG_OBJ)
	$(CPPC) $(FLAGS) -o $@ $^ $(LIB_PATH) $(LIBS)

wt2tt:	lexicon-tools/wt2tt.l
	@$(FLEX) -owt2tt.c $<
	@$(CC) $(CCFLAGS) -o wt2tt wt2tt.c $(LIBS) -lfl
	@rm wt2tt.c

wt2ttt:	lexicon-tools/wt2ttt.l
	@$(FLEX) -owt2ttt.c $<
	@$(CC) $(CCFLAGS) -o wt2ttt wt2ttt.c $(LIBS) -lfl
	@rm wt2ttt.c


%.do: %.cpp
	$(CPPC) $(ALL_FLAGS) $(DEVELOPERS_TAGGER_FLAGS) -c $< -o $@

%.o: %.cpp
	$(CPPC) $(ALL_FLAGS) -c $< -o $@

.PHONY: clean realclean depend

clean: 
	rm -f *.o *~ */*.o */*~ */*.do
	rm -f core messages

realclean: clean 	
	rm -f $(TARGETS)

depend:
	makedepend -- $(ALL_FLAGS) -- */*.cpp */*.c

# DO NOT DELETE

common/file.o: /usr/include/ctype.h /usr/include/features.h
common/file.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
common/file.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h
common/file.o: /usr/include/bits/types.h /usr/include/bits/typesizes.h
common/file.o: /usr/include/endian.h /usr/include/bits/endian.h
common/file.o: /usr/include/string.h /usr/include/stdio.h
common/file.o: /usr/include/libio.h /usr/include/_G_config.h
common/file.o: /usr/include/wchar.h /usr/include/bits/stdio_lim.h
common/file.o: /usr/include/bits/sys_errlist.h common/file.h common/ensure.h
common/file.o: common/message.h
common/message.o: common/message.h tagger/settings.h common/basics.h
common/message.o: /usr/include/stdio.h /usr/include/features.h
common/message.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
common/message.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h
common/message.o: /usr/include/bits/types.h /usr/include/bits/typesizes.h
common/message.o: /usr/include/libio.h /usr/include/_G_config.h
common/message.o: /usr/include/wchar.h /usr/include/bits/stdio_lim.h
common/message.o: /usr/include/bits/sys_errlist.h common/ensure.h
common/message.o: /usr/include/limits.h /usr/include/bits/posix1_lim.h
common/message.o: /usr/include/bits/local_lim.h /usr/include/linux/limits.h
common/message.o: /usr/include/bits/posix2_lim.h tagger/sentence.h
common/message.o: tagger/wordtoken.h tagger/letter.h /usr/include/string.h
common/message.o: /usr/include/ctype.h /usr/include/endian.h
common/message.o: /usr/include/bits/endian.h common/stringbuf.h
common/message.o: tagger/token.h tagger/word.h tagger/hashscatter.h
common/message.o: tagger/inflectrule.h tagger/tag.h tagger/bitmap.h
common/message.o: common/file.h tagger/feature.h tagger/tagdefines.h
common/message.o: tagger/wordtag.h
developers-tagger/developers-tagger.o: /usr/include/math.h
developers-tagger/developers-tagger.o: /usr/include/features.h
developers-tagger/developers-tagger.o: /usr/include/sys/cdefs.h
developers-tagger/developers-tagger.o: /usr/include/bits/wordsize.h
developers-tagger/developers-tagger.o: /usr/include/gnu/stubs.h
developers-tagger/developers-tagger.o: /usr/include/gnu/stubs-32.h
developers-tagger/developers-tagger.o: /usr/include/bits/huge_val.h
developers-tagger/developers-tagger.o: /usr/include/bits/mathdef.h
developers-tagger/developers-tagger.o: /usr/include/bits/mathcalls.h
developers-tagger/developers-tagger.o: /usr/include/time.h
developers-tagger/developers-tagger.o: /usr/include/bits/time.h
developers-tagger/developers-tagger.o: /usr/include/bits/types.h
developers-tagger/developers-tagger.o: /usr/include/bits/typesizes.h
developers-tagger/developers-tagger.o: developers-tagger/developers-tagger.h
developers-tagger/developers-tagger.o: tagger/tagger.h common/basics.h
developers-tagger/developers-tagger.o: /usr/include/stdio.h
developers-tagger/developers-tagger.o: /usr/include/libio.h
developers-tagger/developers-tagger.o: /usr/include/_G_config.h
developers-tagger/developers-tagger.o: /usr/include/wchar.h
developers-tagger/developers-tagger.o: /usr/include/bits/stdio_lim.h
developers-tagger/developers-tagger.o: /usr/include/bits/sys_errlist.h
developers-tagger/developers-tagger.o: common/ensure.h tagger/lexicon.h
developers-tagger/developers-tagger.o: tagger/hashtable.h
developers-tagger/developers-tagger.o: /usr/include/string.h
developers-tagger/developers-tagger.o: /usr/include/stdlib.h
developers-tagger/developers-tagger.o: /usr/include/sys/types.h
developers-tagger/developers-tagger.o: /usr/include/endian.h
developers-tagger/developers-tagger.o: /usr/include/bits/endian.h
developers-tagger/developers-tagger.o: /usr/include/sys/select.h
developers-tagger/developers-tagger.o: /usr/include/bits/select.h
developers-tagger/developers-tagger.o: /usr/include/bits/sigset.h
developers-tagger/developers-tagger.o: /usr/include/sys/sysmacros.h
developers-tagger/developers-tagger.o: /usr/include/bits/pthreadtypes.h
developers-tagger/developers-tagger.o: /usr/include/alloca.h
developers-tagger/developers-tagger.o: tagger/morflexicon.h tagger/word.h
developers-tagger/developers-tagger.o: tagger/hashscatter.h
developers-tagger/developers-tagger.o: tagger/inflectrule.h
developers-tagger/developers-tagger.o: /usr/include/limits.h
developers-tagger/developers-tagger.o: /usr/include/bits/posix1_lim.h
developers-tagger/developers-tagger.o: /usr/include/bits/local_lim.h
developers-tagger/developers-tagger.o: /usr/include/linux/limits.h
developers-tagger/developers-tagger.o: /usr/include/bits/posix2_lim.h
developers-tagger/developers-tagger.o: common/message.h tagger/tag.h
developers-tagger/developers-tagger.o: tagger/bitmap.h common/file.h
developers-tagger/developers-tagger.o: /usr/include/ctype.h tagger/feature.h
developers-tagger/developers-tagger.o: tagger/settings.h tagger/tagdefines.h
developers-tagger/developers-tagger.o: tagger/wordtag.h common/stringbuf.h
developers-tagger/developers-tagger.o: tagger/hasharray.h tagger/taglexicon.h
developers-tagger/developers-tagger.o: tagger/tagtrigram.h tagger/token.h
developers-tagger/developers-tagger.o: tagger/styleword.h
developers-tagger/developers-tagger.o: tagger/newwordlexicon.h
developers-tagger/developers-tagger.o: tagger/newword.h tagger/wordlexicon.h
developers-tagger/developers-tagger.o: tagger/inflectlexicon.h
developers-tagger/developers-tagger.o: tagger/wordruleterms.h
developers-tagger/developers-tagger.o: tagger/sentence.h tagger/wordtoken.h
developers-tagger/developers-tagger.o: tagger/letter.h common/timer.h
developers-tagger/developers-tagger.o: /usr/include/sys/time.h tagger/text.h
developers-tagger/developers-tagger.o: token/tokenizer.h common/FlexLexer.h
developers-tagger/developers-tagger.o: tagger/trigramgadget.h tagger/morf.h
developers-tagger/developers-tagger.o: developers-tagger/settings_manip.h
developers-tagger/developers-tagger.o: tagger/heap.h
developers-tagger/main.o: tagger/settings.h common/basics.h
developers-tagger/main.o: /usr/include/stdio.h /usr/include/features.h
developers-tagger/main.o: /usr/include/sys/cdefs.h
developers-tagger/main.o: /usr/include/bits/wordsize.h
developers-tagger/main.o: /usr/include/gnu/stubs.h
developers-tagger/main.o: /usr/include/gnu/stubs-32.h
developers-tagger/main.o: /usr/include/bits/types.h
developers-tagger/main.o: /usr/include/bits/typesizes.h /usr/include/libio.h
developers-tagger/main.o: /usr/include/_G_config.h /usr/include/wchar.h
developers-tagger/main.o: /usr/include/bits/stdio_lim.h
developers-tagger/main.o: /usr/include/bits/sys_errlist.h common/ensure.h
developers-tagger/main.o: /usr/include/limits.h
developers-tagger/main.o: /usr/include/bits/posix1_lim.h
developers-tagger/main.o: /usr/include/bits/local_lim.h
developers-tagger/main.o: /usr/include/linux/limits.h
developers-tagger/main.o: /usr/include/bits/posix2_lim.h common/file.h
developers-tagger/main.o: /usr/include/ctype.h /usr/include/endian.h
developers-tagger/main.o: /usr/include/bits/endian.h common/message.h
developers-tagger/main.o: tagger/letter.h /usr/include/string.h
developers-tagger/main.o: developers-tagger/developers-tagger.h
developers-tagger/main.o: tagger/tagger.h tagger/lexicon.h tagger/hashtable.h
developers-tagger/main.o: /usr/include/stdlib.h /usr/include/sys/types.h
developers-tagger/main.o: /usr/include/time.h /usr/include/bits/time.h
developers-tagger/main.o: /usr/include/sys/select.h
developers-tagger/main.o: /usr/include/bits/select.h
developers-tagger/main.o: /usr/include/bits/sigset.h
developers-tagger/main.o: /usr/include/sys/sysmacros.h
developers-tagger/main.o: /usr/include/bits/pthreadtypes.h
developers-tagger/main.o: /usr/include/alloca.h tagger/morflexicon.h
developers-tagger/main.o: tagger/word.h tagger/hashscatter.h
developers-tagger/main.o: tagger/inflectrule.h tagger/tag.h tagger/bitmap.h
developers-tagger/main.o: tagger/feature.h tagger/tagdefines.h
developers-tagger/main.o: tagger/wordtag.h common/stringbuf.h
developers-tagger/main.o: tagger/hasharray.h tagger/taglexicon.h
developers-tagger/main.o: tagger/tagtrigram.h tagger/token.h
developers-tagger/main.o: tagger/styleword.h tagger/newwordlexicon.h
developers-tagger/main.o: tagger/newword.h tagger/wordlexicon.h
developers-tagger/main.o: tagger/inflectlexicon.h tagger/wordruleterms.h
developers-tagger/main.o: tagger/sentence.h tagger/wordtoken.h common/timer.h
developers-tagger/main.o: /usr/include/sys/time.h tagger/text.h
developers-tagger/main.o: token/tokenizer.h common/FlexLexer.h
developers-tagger/main.o: tagger/trigramgadget.h
developers-tagger/main.o: developers-tagger/settings_manip.h
developers-tagger/settings_manip.o: developers-tagger/settings_manip.h
developers-tagger/settings_manip.o: common/message.h common/file.h
developers-tagger/settings_manip.o: /usr/include/ctype.h
developers-tagger/settings_manip.o: /usr/include/features.h
developers-tagger/settings_manip.o: /usr/include/sys/cdefs.h
developers-tagger/settings_manip.o: /usr/include/bits/wordsize.h
developers-tagger/settings_manip.o: /usr/include/gnu/stubs.h
developers-tagger/settings_manip.o: /usr/include/gnu/stubs-32.h
developers-tagger/settings_manip.o: /usr/include/bits/types.h
developers-tagger/settings_manip.o: /usr/include/bits/typesizes.h
developers-tagger/settings_manip.o: /usr/include/endian.h
developers-tagger/settings_manip.o: /usr/include/bits/endian.h
developers-tagger/settings_manip.o: common/ensure.h tagger/settings.h
developers-tagger/settings_manip.o: common/basics.h /usr/include/stdio.h
developers-tagger/settings_manip.o: /usr/include/libio.h
developers-tagger/settings_manip.o: /usr/include/_G_config.h
developers-tagger/settings_manip.o: /usr/include/wchar.h
developers-tagger/settings_manip.o: /usr/include/bits/stdio_lim.h
developers-tagger/settings_manip.o: /usr/include/bits/sys_errlist.h
developers-tagger/settings_manip.o: /usr/include/limits.h
developers-tagger/settings_manip.o: /usr/include/bits/posix1_lim.h
developers-tagger/settings_manip.o: /usr/include/bits/local_lim.h
developers-tagger/settings_manip.o: /usr/include/linux/limits.h
developers-tagger/settings_manip.o: /usr/include/bits/posix2_lim.h
lexicon-tools/freqstatmorf.o: common/basics.h /usr/include/stdio.h
lexicon-tools/freqstatmorf.o: /usr/include/features.h
lexicon-tools/freqstatmorf.o: /usr/include/sys/cdefs.h
lexicon-tools/freqstatmorf.o: /usr/include/bits/wordsize.h
lexicon-tools/freqstatmorf.o: /usr/include/gnu/stubs.h
lexicon-tools/freqstatmorf.o: /usr/include/gnu/stubs-32.h
lexicon-tools/freqstatmorf.o: /usr/include/bits/types.h
lexicon-tools/freqstatmorf.o: /usr/include/bits/typesizes.h
lexicon-tools/freqstatmorf.o: /usr/include/libio.h /usr/include/_G_config.h
lexicon-tools/freqstatmorf.o: /usr/include/wchar.h
lexicon-tools/freqstatmorf.o: /usr/include/bits/stdio_lim.h
lexicon-tools/freqstatmorf.o: /usr/include/bits/sys_errlist.h common/ensure.h
lexicon-tools/freqstatmorf.o: tagger/letter.h /usr/include/string.h
lexicon-tools/freqstatmorf.o: /usr/include/ctype.h /usr/include/endian.h
lexicon-tools/freqstatmorf.o: /usr/include/bits/endian.h tagger/morf.h
lexicon-tools/freqstatmorf.o: tagger/taglexicon.h tagger/bitmap.h
lexicon-tools/freqstatmorf.o: common/file.h common/message.h tagger/feature.h
lexicon-tools/freqstatmorf.o: tagger/hasharray.h tagger/tag.h
lexicon-tools/freqstatmorf.o: tagger/hashscatter.h tagger/settings.h
lexicon-tools/freqstatmorf.o: /usr/include/limits.h
lexicon-tools/freqstatmorf.o: /usr/include/bits/posix1_lim.h
lexicon-tools/freqstatmorf.o: /usr/include/bits/local_lim.h
lexicon-tools/freqstatmorf.o: /usr/include/linux/limits.h
lexicon-tools/freqstatmorf.o: /usr/include/bits/posix2_lim.h
lexicon-tools/freqstatmorf.o: tagger/tagdefines.h tagger/tagtrigram.h
lexicon-tools/freqstatmorf.o: tagger/token.h tagger/word.h
lexicon-tools/freqstatmorf.o: tagger/inflectrule.h tagger/wordtag.h
lexicon-tools/freqstatmorf.o: common/stringbuf.h
tagger/hashscatter.o: tagger/hashscatter.h
tagger/inflectlexicon.o: common/file.h /usr/include/ctype.h
tagger/inflectlexicon.o: /usr/include/features.h /usr/include/sys/cdefs.h
tagger/inflectlexicon.o: /usr/include/bits/wordsize.h
tagger/inflectlexicon.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h
tagger/inflectlexicon.o: /usr/include/bits/types.h
tagger/inflectlexicon.o: /usr/include/bits/typesizes.h /usr/include/endian.h
tagger/inflectlexicon.o: /usr/include/bits/endian.h common/ensure.h
tagger/inflectlexicon.o: common/message.h tagger/inflectlexicon.h
tagger/inflectlexicon.o: common/basics.h /usr/include/stdio.h
tagger/inflectlexicon.o: /usr/include/libio.h /usr/include/_G_config.h
tagger/inflectlexicon.o: /usr/include/wchar.h /usr/include/bits/stdio_lim.h
tagger/inflectlexicon.o: /usr/include/bits/sys_errlist.h tagger/inflectrule.h
tagger/inflectlexicon.o: /usr/include/limits.h /usr/include/bits/posix1_lim.h
tagger/inflectlexicon.o: /usr/include/bits/local_lim.h
tagger/inflectlexicon.o: /usr/include/linux/limits.h
tagger/inflectlexicon.o: /usr/include/bits/posix2_lim.h tagger/tag.h
tagger/inflectlexicon.o: /usr/include/string.h tagger/bitmap.h
tagger/inflectlexicon.o: tagger/feature.h tagger/hashscatter.h
tagger/inflectlexicon.o: tagger/settings.h tagger/tagdefines.h
tagger/inflectlexicon.o: tagger/letter.h tagger/taglexicon.h
tagger/inflectlexicon.o: tagger/hasharray.h tagger/tagtrigram.h
tagger/inflectlexicon.o: tagger/token.h tagger/word.h tagger/wordtag.h
tagger/inflectlexicon.o: common/stringbuf.h
tagger/inflectrule.o: tagger/letter.h /usr/include/string.h
tagger/inflectrule.o: /usr/include/features.h /usr/include/sys/cdefs.h
tagger/inflectrule.o: /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h
tagger/inflectrule.o: /usr/include/gnu/stubs-32.h /usr/include/ctype.h
tagger/inflectrule.o: /usr/include/bits/types.h /usr/include/bits/typesizes.h
tagger/inflectrule.o: /usr/include/endian.h /usr/include/bits/endian.h
tagger/inflectrule.o: common/basics.h /usr/include/stdio.h
tagger/inflectrule.o: /usr/include/libio.h /usr/include/_G_config.h
tagger/inflectrule.o: /usr/include/wchar.h /usr/include/bits/stdio_lim.h
tagger/inflectrule.o: /usr/include/bits/sys_errlist.h common/ensure.h
tagger/inflectrule.o: tagger/inflectrule.h /usr/include/limits.h
tagger/inflectrule.o: /usr/include/bits/posix1_lim.h
tagger/inflectrule.o: /usr/include/bits/local_lim.h
tagger/inflectrule.o: /usr/include/linux/limits.h
tagger/inflectrule.o: /usr/include/bits/posix2_lim.h tagger/tag.h
tagger/inflectrule.o: tagger/bitmap.h common/file.h common/message.h
tagger/inflectrule.o: tagger/feature.h tagger/hashscatter.h tagger/settings.h
tagger/inflectrule.o: tagger/tagdefines.h
tagger/letter.o: tagger/letter.h /usr/include/string.h
tagger/letter.o: /usr/include/features.h /usr/include/sys/cdefs.h
tagger/letter.o: /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h
tagger/letter.o: /usr/include/gnu/stubs-32.h /usr/include/ctype.h
tagger/letter.o: /usr/include/bits/types.h /usr/include/bits/typesizes.h
tagger/letter.o: /usr/include/endian.h /usr/include/bits/endian.h
tagger/letter.o: common/basics.h /usr/include/stdio.h /usr/include/libio.h
tagger/letter.o: /usr/include/_G_config.h /usr/include/wchar.h
tagger/letter.o: /usr/include/bits/stdio_lim.h
tagger/letter.o: /usr/include/bits/sys_errlist.h common/ensure.h
tagger/lexicon.o: /usr/include/math.h /usr/include/features.h
tagger/lexicon.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
tagger/lexicon.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h
tagger/lexicon.o: /usr/include/bits/huge_val.h /usr/include/bits/mathdef.h
tagger/lexicon.o: /usr/include/bits/mathcalls.h common/file.h
tagger/lexicon.o: /usr/include/ctype.h /usr/include/bits/types.h
tagger/lexicon.o: /usr/include/bits/typesizes.h /usr/include/endian.h
tagger/lexicon.o: /usr/include/bits/endian.h common/ensure.h common/message.h
tagger/lexicon.o: tagger/letter.h /usr/include/string.h common/basics.h
tagger/lexicon.o: /usr/include/stdio.h /usr/include/libio.h
tagger/lexicon.o: /usr/include/_G_config.h /usr/include/wchar.h
tagger/lexicon.o: /usr/include/bits/stdio_lim.h
tagger/lexicon.o: /usr/include/bits/sys_errlist.h tagger/morf.h
tagger/lexicon.o: tagger/sentence.h tagger/wordtoken.h tagger/settings.h
tagger/lexicon.o: /usr/include/limits.h /usr/include/bits/posix1_lim.h
tagger/lexicon.o: /usr/include/bits/local_lim.h /usr/include/linux/limits.h
tagger/lexicon.o: /usr/include/bits/posix2_lim.h common/stringbuf.h
tagger/lexicon.o: tagger/token.h tagger/word.h tagger/hashscatter.h
tagger/lexicon.o: tagger/inflectrule.h tagger/tag.h tagger/bitmap.h
tagger/lexicon.o: tagger/feature.h tagger/tagdefines.h tagger/wordtag.h
tagger/lexicon.o: tagger/lexicon.h tagger/hashtable.h /usr/include/stdlib.h
tagger/lexicon.o: /usr/include/sys/types.h /usr/include/time.h
tagger/lexicon.o: /usr/include/bits/time.h /usr/include/sys/select.h
tagger/lexicon.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
tagger/lexicon.o: /usr/include/sys/sysmacros.h
tagger/lexicon.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
tagger/lexicon.o: tagger/morflexicon.h tagger/hasharray.h tagger/taglexicon.h
tagger/lexicon.o: tagger/tagtrigram.h tagger/styleword.h
tagger/lexicon.o: tagger/newwordlexicon.h tagger/newword.h
tagger/lexicon.o: tagger/wordlexicon.h tagger/inflectlexicon.h
tagger/lexicon.o: tagger/wordruleterms.h tagger/tagger.h common/timer.h
tagger/lexicon.o: /usr/include/sys/time.h tagger/text.h token/tokenizer.h
tagger/lexicon.o: common/FlexLexer.h tagger/trigramgadget.h
tagger/main.o: common/file.h /usr/include/ctype.h /usr/include/features.h
tagger/main.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
tagger/main.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h
tagger/main.o: /usr/include/bits/types.h /usr/include/bits/typesizes.h
tagger/main.o: /usr/include/endian.h /usr/include/bits/endian.h
tagger/main.o: common/ensure.h common/message.h tagger/letter.h
tagger/main.o: /usr/include/string.h common/basics.h /usr/include/stdio.h
tagger/main.o: /usr/include/libio.h /usr/include/_G_config.h
tagger/main.o: /usr/include/wchar.h /usr/include/bits/stdio_lim.h
tagger/main.o: /usr/include/bits/sys_errlist.h tagger/settings.h
tagger/main.o: /usr/include/limits.h /usr/include/bits/posix1_lim.h
tagger/main.o: /usr/include/bits/local_lim.h /usr/include/linux/limits.h
tagger/main.o: /usr/include/bits/posix2_lim.h tagger/tagger.h
tagger/main.o: tagger/lexicon.h tagger/hashtable.h /usr/include/stdlib.h
tagger/main.o: /usr/include/sys/types.h /usr/include/time.h
tagger/main.o: /usr/include/bits/time.h /usr/include/sys/select.h
tagger/main.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
tagger/main.o: /usr/include/sys/sysmacros.h /usr/include/bits/pthreadtypes.h
tagger/main.o: /usr/include/alloca.h tagger/morflexicon.h tagger/word.h
tagger/main.o: tagger/hashscatter.h tagger/inflectrule.h tagger/tag.h
tagger/main.o: tagger/bitmap.h tagger/feature.h tagger/tagdefines.h
tagger/main.o: tagger/wordtag.h common/stringbuf.h tagger/hasharray.h
tagger/main.o: tagger/taglexicon.h tagger/tagtrigram.h tagger/token.h
tagger/main.o: tagger/styleword.h tagger/newwordlexicon.h tagger/newword.h
tagger/main.o: tagger/wordlexicon.h tagger/inflectlexicon.h
tagger/main.o: tagger/wordruleterms.h tagger/sentence.h tagger/wordtoken.h
tagger/main.o: common/timer.h /usr/include/sys/time.h tagger/text.h
tagger/main.o: token/tokenizer.h common/FlexLexer.h tagger/trigramgadget.h
tagger/morflexicon.o: common/file.h /usr/include/ctype.h
tagger/morflexicon.o: /usr/include/features.h /usr/include/sys/cdefs.h
tagger/morflexicon.o: /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h
tagger/morflexicon.o: /usr/include/gnu/stubs-32.h /usr/include/bits/types.h
tagger/morflexicon.o: /usr/include/bits/typesizes.h /usr/include/endian.h
tagger/morflexicon.o: /usr/include/bits/endian.h common/ensure.h
tagger/morflexicon.o: common/message.h tagger/morflexicon.h tagger/word.h
tagger/morflexicon.o: /usr/include/string.h tagger/hashscatter.h
tagger/morflexicon.o: tagger/inflectrule.h common/basics.h
tagger/morflexicon.o: /usr/include/stdio.h /usr/include/libio.h
tagger/morflexicon.o: /usr/include/_G_config.h /usr/include/wchar.h
tagger/morflexicon.o: /usr/include/bits/stdio_lim.h
tagger/morflexicon.o: /usr/include/bits/sys_errlist.h /usr/include/limits.h
tagger/morflexicon.o: /usr/include/bits/posix1_lim.h
tagger/morflexicon.o: /usr/include/bits/local_lim.h
tagger/morflexicon.o: /usr/include/linux/limits.h
tagger/morflexicon.o: /usr/include/bits/posix2_lim.h tagger/tag.h
tagger/morflexicon.o: tagger/bitmap.h tagger/feature.h tagger/settings.h
tagger/morflexicon.o: tagger/tagdefines.h tagger/wordtag.h common/stringbuf.h
tagger/morflexicon.o: tagger/hasharray.h tagger/taglexicon.h
tagger/morflexicon.o: tagger/tagtrigram.h tagger/token.h tagger/styleword.h
tagger/newwordlexicon.o: tagger/newwordlexicon.h tagger/newword.h
tagger/newwordlexicon.o: tagger/word.h /usr/include/string.h
tagger/newwordlexicon.o: /usr/include/features.h /usr/include/sys/cdefs.h
tagger/newwordlexicon.o: /usr/include/bits/wordsize.h
tagger/newwordlexicon.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h
tagger/newwordlexicon.o: tagger/hashscatter.h tagger/inflectrule.h
tagger/newwordlexicon.o: common/basics.h /usr/include/stdio.h
tagger/newwordlexicon.o: /usr/include/bits/types.h
tagger/newwordlexicon.o: /usr/include/bits/typesizes.h /usr/include/libio.h
tagger/newwordlexicon.o: /usr/include/_G_config.h /usr/include/wchar.h
tagger/newwordlexicon.o: /usr/include/bits/stdio_lim.h
tagger/newwordlexicon.o: /usr/include/bits/sys_errlist.h common/ensure.h
tagger/newwordlexicon.o: /usr/include/limits.h /usr/include/bits/posix1_lim.h
tagger/newwordlexicon.o: /usr/include/bits/local_lim.h
tagger/newwordlexicon.o: /usr/include/linux/limits.h
tagger/newwordlexicon.o: /usr/include/bits/posix2_lim.h common/message.h
tagger/newwordlexicon.o: tagger/tag.h tagger/bitmap.h common/file.h
tagger/newwordlexicon.o: /usr/include/ctype.h /usr/include/endian.h
tagger/newwordlexicon.o: /usr/include/bits/endian.h tagger/feature.h
tagger/newwordlexicon.o: tagger/settings.h tagger/tagdefines.h
tagger/newwordlexicon.o: tagger/wordtag.h common/stringbuf.h
tagger/newwordlexicon.o: tagger/hashtable.h /usr/include/stdlib.h
tagger/newwordlexicon.o: /usr/include/sys/types.h /usr/include/time.h
tagger/newwordlexicon.o: /usr/include/bits/time.h /usr/include/sys/select.h
tagger/newwordlexicon.o: /usr/include/bits/select.h
tagger/newwordlexicon.o: /usr/include/bits/sigset.h
tagger/newwordlexicon.o: /usr/include/sys/sysmacros.h
tagger/newwordlexicon.o: /usr/include/bits/pthreadtypes.h
tagger/newwordlexicon.o: /usr/include/alloca.h
tagger/sentence.o: tagger/letter.h /usr/include/string.h
tagger/sentence.o: /usr/include/features.h /usr/include/sys/cdefs.h
tagger/sentence.o: /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h
tagger/sentence.o: /usr/include/gnu/stubs-32.h /usr/include/ctype.h
tagger/sentence.o: /usr/include/bits/types.h /usr/include/bits/typesizes.h
tagger/sentence.o: /usr/include/endian.h /usr/include/bits/endian.h
tagger/sentence.o: common/basics.h /usr/include/stdio.h /usr/include/libio.h
tagger/sentence.o: /usr/include/_G_config.h /usr/include/wchar.h
tagger/sentence.o: /usr/include/bits/stdio_lim.h
tagger/sentence.o: /usr/include/bits/sys_errlist.h common/ensure.h
tagger/sentence.o: tagger/sentence.h tagger/wordtoken.h tagger/settings.h
tagger/sentence.o: /usr/include/limits.h /usr/include/bits/posix1_lim.h
tagger/sentence.o: /usr/include/bits/local_lim.h /usr/include/linux/limits.h
tagger/sentence.o: /usr/include/bits/posix2_lim.h common/stringbuf.h
tagger/sentence.o: tagger/token.h tagger/word.h tagger/hashscatter.h
tagger/sentence.o: tagger/inflectrule.h common/message.h tagger/tag.h
tagger/sentence.o: tagger/bitmap.h common/file.h tagger/feature.h
tagger/sentence.o: tagger/tagdefines.h tagger/wordtag.h tagger/tagger.h
tagger/sentence.o: tagger/lexicon.h tagger/hashtable.h /usr/include/stdlib.h
tagger/sentence.o: /usr/include/sys/types.h /usr/include/time.h
tagger/sentence.o: /usr/include/bits/time.h /usr/include/sys/select.h
tagger/sentence.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
tagger/sentence.o: /usr/include/sys/sysmacros.h
tagger/sentence.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
tagger/sentence.o: tagger/morflexicon.h tagger/hasharray.h
tagger/sentence.o: tagger/taglexicon.h tagger/tagtrigram.h tagger/styleword.h
tagger/sentence.o: tagger/newwordlexicon.h tagger/newword.h
tagger/sentence.o: tagger/wordlexicon.h tagger/inflectlexicon.h
tagger/sentence.o: tagger/wordruleterms.h common/timer.h
tagger/sentence.o: /usr/include/sys/time.h tagger/text.h token/tokenizer.h
tagger/sentence.o: common/FlexLexer.h tagger/trigramgadget.h
tagger/settings.o: common/basics.h /usr/include/stdio.h
tagger/settings.o: /usr/include/features.h /usr/include/sys/cdefs.h
tagger/settings.o: /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h
tagger/settings.o: /usr/include/gnu/stubs-32.h /usr/include/bits/types.h
tagger/settings.o: /usr/include/bits/typesizes.h /usr/include/libio.h
tagger/settings.o: /usr/include/_G_config.h /usr/include/wchar.h
tagger/settings.o: /usr/include/bits/stdio_lim.h
tagger/settings.o: /usr/include/bits/sys_errlist.h common/ensure.h
tagger/settings.o: common/file.h /usr/include/ctype.h /usr/include/endian.h
tagger/settings.o: /usr/include/bits/endian.h common/message.h
tagger/settings.o: tagger/settings.h /usr/include/limits.h
tagger/settings.o: /usr/include/bits/posix1_lim.h
tagger/settings.o: /usr/include/bits/local_lim.h /usr/include/linux/limits.h
tagger/settings.o: /usr/include/bits/posix2_lim.h
tagger/tag.o: common/message.h tagger/tag.h /usr/include/string.h
tagger/tag.o: /usr/include/features.h /usr/include/sys/cdefs.h
tagger/tag.o: /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h
tagger/tag.o: /usr/include/gnu/stubs-32.h common/basics.h
tagger/tag.o: /usr/include/stdio.h /usr/include/bits/types.h
tagger/tag.o: /usr/include/bits/typesizes.h /usr/include/libio.h
tagger/tag.o: /usr/include/_G_config.h /usr/include/wchar.h
tagger/tag.o: /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h
tagger/tag.o: common/ensure.h tagger/bitmap.h common/file.h
tagger/tag.o: /usr/include/ctype.h /usr/include/endian.h
tagger/tag.o: /usr/include/bits/endian.h tagger/feature.h
tagger/tag.o: tagger/hashscatter.h tagger/settings.h /usr/include/limits.h
tagger/tag.o: /usr/include/bits/posix1_lim.h /usr/include/bits/local_lim.h
tagger/tag.o: /usr/include/linux/limits.h /usr/include/bits/posix2_lim.h
tagger/tag.o: tagger/tagdefines.h tagger/taglexicon.h tagger/hasharray.h
tagger/tag.o: tagger/tagtrigram.h tagger/token.h tagger/word.h
tagger/tag.o: tagger/inflectrule.h tagger/wordtag.h common/stringbuf.h
tagger/tagger.o: /usr/include/math.h /usr/include/features.h
tagger/tagger.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
tagger/tagger.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h
tagger/tagger.o: /usr/include/bits/huge_val.h /usr/include/bits/mathdef.h
tagger/tagger.o: /usr/include/bits/mathcalls.h common/file.h
tagger/tagger.o: /usr/include/ctype.h /usr/include/bits/types.h
tagger/tagger.o: /usr/include/bits/typesizes.h /usr/include/endian.h
tagger/tagger.o: /usr/include/bits/endian.h common/ensure.h common/message.h
tagger/tagger.o: tagger/letter.h /usr/include/string.h common/basics.h
tagger/tagger.o: /usr/include/stdio.h /usr/include/libio.h
tagger/tagger.o: /usr/include/_G_config.h /usr/include/wchar.h
tagger/tagger.o: /usr/include/bits/stdio_lim.h
tagger/tagger.o: /usr/include/bits/sys_errlist.h tagger/morf.h
tagger/tagger.o: tagger/sentence.h tagger/wordtoken.h tagger/settings.h
tagger/tagger.o: /usr/include/limits.h /usr/include/bits/posix1_lim.h
tagger/tagger.o: /usr/include/bits/local_lim.h /usr/include/linux/limits.h
tagger/tagger.o: /usr/include/bits/posix2_lim.h common/stringbuf.h
tagger/tagger.o: tagger/token.h tagger/word.h tagger/hashscatter.h
tagger/tagger.o: tagger/inflectrule.h tagger/tag.h tagger/bitmap.h
tagger/tagger.o: tagger/feature.h tagger/tagdefines.h tagger/wordtag.h
tagger/tagger.o: tagger/tagger.h tagger/lexicon.h tagger/hashtable.h
tagger/tagger.o: /usr/include/stdlib.h /usr/include/sys/types.h
tagger/tagger.o: /usr/include/time.h /usr/include/bits/time.h
tagger/tagger.o: /usr/include/sys/select.h /usr/include/bits/select.h
tagger/tagger.o: /usr/include/bits/sigset.h /usr/include/sys/sysmacros.h
tagger/tagger.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
tagger/tagger.o: tagger/morflexicon.h tagger/hasharray.h tagger/taglexicon.h
tagger/tagger.o: tagger/tagtrigram.h tagger/styleword.h
tagger/tagger.o: tagger/newwordlexicon.h tagger/newword.h
tagger/tagger.o: tagger/wordlexicon.h tagger/inflectlexicon.h
tagger/tagger.o: tagger/wordruleterms.h common/timer.h
tagger/tagger.o: /usr/include/sys/time.h tagger/text.h token/tokenizer.h
tagger/tagger.o: common/FlexLexer.h tagger/trigramgadget.h
tagger/taglexicon.o: /usr/include/math.h /usr/include/features.h
tagger/taglexicon.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
tagger/taglexicon.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h
tagger/taglexicon.o: /usr/include/bits/huge_val.h /usr/include/bits/mathdef.h
tagger/taglexicon.o: /usr/include/bits/mathcalls.h /usr/include/string.h
tagger/taglexicon.o: /usr/include/stdlib.h /usr/include/sys/types.h
tagger/taglexicon.o: /usr/include/bits/types.h /usr/include/bits/typesizes.h
tagger/taglexicon.o: /usr/include/time.h /usr/include/bits/time.h
tagger/taglexicon.o: /usr/include/endian.h /usr/include/bits/endian.h
tagger/taglexicon.o: /usr/include/sys/select.h /usr/include/bits/select.h
tagger/taglexicon.o: /usr/include/bits/sigset.h /usr/include/sys/sysmacros.h
tagger/taglexicon.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
tagger/taglexicon.o: common/file.h /usr/include/ctype.h common/ensure.h
tagger/taglexicon.o: common/message.h tagger/letter.h common/basics.h
tagger/taglexicon.o: /usr/include/stdio.h /usr/include/libio.h
tagger/taglexicon.o: /usr/include/_G_config.h /usr/include/wchar.h
tagger/taglexicon.o: /usr/include/bits/stdio_lim.h
tagger/taglexicon.o: /usr/include/bits/sys_errlist.h tagger/settings.h
tagger/taglexicon.o: /usr/include/limits.h /usr/include/bits/posix1_lim.h
tagger/taglexicon.o: /usr/include/bits/local_lim.h
tagger/taglexicon.o: /usr/include/linux/limits.h
tagger/taglexicon.o: /usr/include/bits/posix2_lim.h tagger/taglexicon.h
tagger/taglexicon.o: tagger/bitmap.h tagger/feature.h tagger/hasharray.h
tagger/taglexicon.o: tagger/tag.h tagger/hashscatter.h tagger/tagdefines.h
tagger/taglexicon.o: tagger/tagtrigram.h tagger/token.h tagger/word.h
tagger/taglexicon.o: tagger/inflectrule.h tagger/wordtag.h common/stringbuf.h
tagger/text.o: tagger/sentence.h tagger/wordtoken.h tagger/letter.h
tagger/text.o: /usr/include/string.h /usr/include/features.h
tagger/text.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
tagger/text.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h
tagger/text.o: /usr/include/ctype.h /usr/include/bits/types.h
tagger/text.o: /usr/include/bits/typesizes.h /usr/include/endian.h
tagger/text.o: /usr/include/bits/endian.h common/basics.h
tagger/text.o: /usr/include/stdio.h /usr/include/libio.h
tagger/text.o: /usr/include/_G_config.h /usr/include/wchar.h
tagger/text.o: /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h
tagger/text.o: common/ensure.h tagger/settings.h /usr/include/limits.h
tagger/text.o: /usr/include/bits/posix1_lim.h /usr/include/bits/local_lim.h
tagger/text.o: /usr/include/linux/limits.h /usr/include/bits/posix2_lim.h
tagger/text.o: common/stringbuf.h tagger/token.h tagger/word.h
tagger/text.o: tagger/hashscatter.h tagger/inflectrule.h common/message.h
tagger/text.o: tagger/tag.h tagger/bitmap.h common/file.h tagger/feature.h
tagger/text.o: tagger/tagdefines.h tagger/wordtag.h tagger/text.h
tagger/word.o: /usr/include/math.h /usr/include/features.h
tagger/word.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
tagger/word.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h
tagger/word.o: /usr/include/bits/huge_val.h /usr/include/bits/mathdef.h
tagger/word.o: /usr/include/bits/mathcalls.h tagger/word.h
tagger/word.o: /usr/include/string.h tagger/hashscatter.h
tagger/word.o: tagger/inflectrule.h common/basics.h /usr/include/stdio.h
tagger/word.o: /usr/include/bits/types.h /usr/include/bits/typesizes.h
tagger/word.o: /usr/include/libio.h /usr/include/_G_config.h
tagger/word.o: /usr/include/wchar.h /usr/include/bits/stdio_lim.h
tagger/word.o: /usr/include/bits/sys_errlist.h common/ensure.h
tagger/word.o: /usr/include/limits.h /usr/include/bits/posix1_lim.h
tagger/word.o: /usr/include/bits/local_lim.h /usr/include/linux/limits.h
tagger/word.o: /usr/include/bits/posix2_lim.h common/message.h tagger/tag.h
tagger/word.o: tagger/bitmap.h common/file.h /usr/include/ctype.h
tagger/word.o: /usr/include/endian.h /usr/include/bits/endian.h
tagger/word.o: tagger/feature.h tagger/settings.h tagger/tagdefines.h
tagger/word.o: tagger/wordtag.h common/stringbuf.h tagger/newword.h
tagger/wordlexicon.o: common/file.h /usr/include/ctype.h
tagger/wordlexicon.o: /usr/include/features.h /usr/include/sys/cdefs.h
tagger/wordlexicon.o: /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h
tagger/wordlexicon.o: /usr/include/gnu/stubs-32.h /usr/include/bits/types.h
tagger/wordlexicon.o: /usr/include/bits/typesizes.h /usr/include/endian.h
tagger/wordlexicon.o: /usr/include/bits/endian.h common/ensure.h
tagger/wordlexicon.o: common/message.h tagger/letter.h /usr/include/string.h
tagger/wordlexicon.o: common/basics.h /usr/include/stdio.h
tagger/wordlexicon.o: /usr/include/libio.h /usr/include/_G_config.h
tagger/wordlexicon.o: /usr/include/wchar.h /usr/include/bits/stdio_lim.h
tagger/wordlexicon.o: /usr/include/bits/sys_errlist.h tagger/newwordlexicon.h
tagger/wordlexicon.o: tagger/newword.h tagger/word.h tagger/hashscatter.h
tagger/wordlexicon.o: tagger/inflectrule.h /usr/include/limits.h
tagger/wordlexicon.o: /usr/include/bits/posix1_lim.h
tagger/wordlexicon.o: /usr/include/bits/local_lim.h
tagger/wordlexicon.o: /usr/include/linux/limits.h
tagger/wordlexicon.o: /usr/include/bits/posix2_lim.h tagger/tag.h
tagger/wordlexicon.o: tagger/bitmap.h tagger/feature.h tagger/settings.h
tagger/wordlexicon.o: tagger/tagdefines.h tagger/wordtag.h common/stringbuf.h
tagger/wordlexicon.o: tagger/hashtable.h /usr/include/stdlib.h
tagger/wordlexicon.o: /usr/include/sys/types.h /usr/include/time.h
tagger/wordlexicon.o: /usr/include/bits/time.h /usr/include/sys/select.h
tagger/wordlexicon.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
tagger/wordlexicon.o: /usr/include/sys/sysmacros.h
tagger/wordlexicon.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
tagger/wordlexicon.o: tagger/wordlexicon.h tagger/hasharray.h
tagger/wordlexicon.o: tagger/inflectlexicon.h tagger/taglexicon.h
tagger/wordlexicon.o: tagger/tagtrigram.h tagger/token.h tagger/styleword.h
tagger/wordtag.o: tagger/word.h /usr/include/string.h /usr/include/features.h
tagger/wordtag.o: /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h
tagger/wordtag.o: /usr/include/gnu/stubs.h /usr/include/gnu/stubs-32.h
tagger/wordtag.o: tagger/hashscatter.h tagger/inflectrule.h common/basics.h
tagger/wordtag.o: /usr/include/stdio.h /usr/include/bits/types.h
tagger/wordtag.o: /usr/include/bits/typesizes.h /usr/include/libio.h
tagger/wordtag.o: /usr/include/_G_config.h /usr/include/wchar.h
tagger/wordtag.o: /usr/include/bits/stdio_lim.h
tagger/wordtag.o: /usr/include/bits/sys_errlist.h common/ensure.h
tagger/wordtag.o: /usr/include/limits.h /usr/include/bits/posix1_lim.h
tagger/wordtag.o: /usr/include/bits/local_lim.h /usr/include/linux/limits.h
tagger/wordtag.o: /usr/include/bits/posix2_lim.h common/message.h
tagger/wordtag.o: tagger/tag.h tagger/bitmap.h common/file.h
tagger/wordtag.o: /usr/include/ctype.h /usr/include/endian.h
tagger/wordtag.o: /usr/include/bits/endian.h tagger/feature.h
tagger/wordtag.o: tagger/settings.h tagger/tagdefines.h tagger/wordtag.h
tagger/wordtag.o: common/stringbuf.h tagger/wordlexicon.h tagger/newword.h
tagger/wordtag.o: tagger/hasharray.h tagger/inflectlexicon.h
tagger/wordtag.o: tagger/taglexicon.h tagger/tagtrigram.h tagger/token.h
tagger/wordtag.o: tagger/styleword.h
tagger/wordtoken.o: tagger/letter.h /usr/include/string.h
tagger/wordtoken.o: /usr/include/features.h /usr/include/sys/cdefs.h
tagger/wordtoken.o: /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h
tagger/wordtoken.o: /usr/include/gnu/stubs-32.h /usr/include/ctype.h
tagger/wordtoken.o: /usr/include/bits/types.h /usr/include/bits/typesizes.h
tagger/wordtoken.o: /usr/include/endian.h /usr/include/bits/endian.h
tagger/wordtoken.o: common/basics.h /usr/include/stdio.h /usr/include/libio.h
tagger/wordtoken.o: /usr/include/_G_config.h /usr/include/wchar.h
tagger/wordtoken.o: /usr/include/bits/stdio_lim.h
tagger/wordtoken.o: /usr/include/bits/sys_errlist.h common/ensure.h
tagger/wordtoken.o: tagger/settings.h /usr/include/limits.h
tagger/wordtoken.o: /usr/include/bits/posix1_lim.h
tagger/wordtoken.o: /usr/include/bits/local_lim.h /usr/include/linux/limits.h
tagger/wordtoken.o: /usr/include/bits/posix2_lim.h tagger/token.h
tagger/wordtoken.o: tagger/newword.h tagger/word.h tagger/hashscatter.h
tagger/wordtoken.o: tagger/inflectrule.h common/message.h tagger/tag.h
tagger/wordtoken.o: tagger/bitmap.h common/file.h tagger/feature.h
tagger/wordtoken.o: tagger/tagdefines.h tagger/wordtag.h common/stringbuf.h
tagger/wordtoken.o: tagger/wordtoken.h
token/tokenizer.o: common/FlexLexer.h tagger/token.h /usr/include/string.h
token/tokenizer.o: /usr/include/features.h /usr/include/sys/cdefs.h
token/tokenizer.o: /usr/include/bits/wordsize.h /usr/include/gnu/stubs.h
token/tokenizer.o: /usr/include/gnu/stubs-32.h /usr/include/stdlib.h
token/tokenizer.o: /usr/include/sys/types.h /usr/include/bits/types.h
token/tokenizer.o: /usr/include/bits/typesizes.h /usr/include/time.h
token/tokenizer.o: /usr/include/bits/time.h /usr/include/endian.h
token/tokenizer.o: /usr/include/bits/endian.h /usr/include/sys/select.h
token/tokenizer.o: /usr/include/bits/select.h /usr/include/bits/sigset.h
token/tokenizer.o: /usr/include/sys/sysmacros.h
token/tokenizer.o: /usr/include/bits/pthreadtypes.h /usr/include/alloca.h
