2004-12-23 15:16:30 +02:00
|
|
|
bin_PROGRAMS = cmph
|
|
|
|
lib_LTLIBRARIES = libcmph.la
|
|
|
|
include_HEADERS = cmph.h cmph_types.h
|
|
|
|
libcmph_la_SOURCES = debug.h\
|
|
|
|
cmph_types.h\
|
|
|
|
hash.h hash_state.h hash.c\
|
|
|
|
jenkins_hash.h jenkins_hash.c\
|
|
|
|
djb2_hash.h djb2_hash.c\
|
|
|
|
sdbm_hash.h sdbm_hash.c\
|
|
|
|
fnv_hash.h fnv_hash.c\
|
|
|
|
vstack.h vstack.c\
|
|
|
|
vqueue.h vqueue.c\
|
|
|
|
graph.h graph.c\
|
|
|
|
cmph.h cmph.c\
|
|
|
|
cmph_structs.h cmph_structs.c\
|
|
|
|
czech.h czech_structs.h czech.c\
|
|
|
|
bmz.h bmz_structs.h bmz.c
|
|
|
|
|
|
|
|
libcmph_la_LDFLAGS = -version-info 0:0:0
|
|
|
|
|
2005-01-18 14:18:51 +02:00
|
|
|
cmph_SOURCES = main.c ../wingetopt.h ../wingetopt.c
|
2004-12-23 15:16:30 +02:00
|
|
|
cmph_LDADD = libcmph.la
|