Fixed Makefile.am such that make dist works on ubuntu.
This commit is contained in:
parent
9b6e70767e
commit
4ce2a5a8c6
|
@ -1,15 +1,29 @@
|
||||||
bin_PROGRAMS = cmph
|
bin_PROGRAMS = cmph
|
||||||
lib_LTLIBRARIES = libcmph.la
|
lib_LTLIBRARIES = libcmph.la
|
||||||
include_HEADERS = cmph.h cmph_types.h
|
include_HEADERS = cmph.h cmph_types.h
|
||||||
libcmph_la_SOURCES = hash.c jenkins_hash.c\
|
libcmph_la_SOURCES = hash.h hash.c \
|
||||||
vstack.c vqueue.c\
|
jenkins_hash.h jenkins_hash.c\
|
||||||
graph.c cmph.c cmph_structs.c\
|
hash_state.h debug.h \
|
||||||
chm.c bmz.c bmz8.c bdz.c bdz_ph.c\
|
vstack.h vstack.c vqueue.h vqueue.c\
|
||||||
buffer_manager.c buffer_entry.c\
|
graph.h graph.c bitbool.h \
|
||||||
brz.c fch.c fch_buckets.c \
|
cmph.h cmph.c cmph_structs.h cmph_structs.c\
|
||||||
select.c compressed_seq.c \
|
chm.h chm.c chm_structs.h \
|
||||||
chd.c chd_ph.c miller_rabin.c \
|
bmz.h bmz.c bmz_structs.h \
|
||||||
compressed_rank.c
|
bmz8.h bmz8.c bmz8_structs.h \
|
||||||
|
bdz.h bdz.c bdz_structs.h \
|
||||||
|
bdz_ph.h bdz_ph.c bdz_structs_ph.h \
|
||||||
|
brz.h brz.c brz_structs.h \
|
||||||
|
fch.h fch.c fch_structs.h \
|
||||||
|
fch_buckets.h fch_buckets.c \
|
||||||
|
chd.h chd.c chd_structs.h \
|
||||||
|
chd_ph.h chd_ph.c chd_structs_ph.h \
|
||||||
|
miller_rabin.h miller_rabin.c \
|
||||||
|
buffer_manager.h buffer_manager.c \
|
||||||
|
buffer_entry.h buffer_entry.c\
|
||||||
|
select.h select.c select_lookup_tables.h \
|
||||||
|
compressed_seq.h compressed_seq.c \
|
||||||
|
compressed_rank.h compressed_rank.c \
|
||||||
|
cmph_time.h
|
||||||
|
|
||||||
libcmph_la_LDFLAGS = -version-info 0:0:0
|
libcmph_la_LDFLAGS = -version-info 0:0:0
|
||||||
|
|
||||||
|
|
|
@ -11,11 +11,11 @@ typedef int cmph_int32;
|
||||||
typedef unsigned int cmph_uint32;
|
typedef unsigned int cmph_uint32;
|
||||||
|
|
||||||
#if defined(__ia64) || defined(__x86_64__)
|
#if defined(__ia64) || defined(__x86_64__)
|
||||||
/** \typedef long cmph_int64;
|
/** \typedef long cmph_int64;
|
||||||
* \brief 64-bit integer for a 64-bit achitecture.
|
* \brief 64-bit integer for a 64-bit achitecture.
|
||||||
*/
|
*/
|
||||||
typedef long cmph_int64;
|
typedef long cmph_int64;
|
||||||
|
|
||||||
/** \typedef unsigned long cmph_uint64;
|
/** \typedef unsigned long cmph_uint64;
|
||||||
* \brief Unsigned 64-bit integer for a 64-bit achitecture.
|
* \brief Unsigned 64-bit integer for a 64-bit achitecture.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue