diff options
author | Jamie Bullock <jamie@postlude.co.uk> | 2006-10-20 11:30:55 +0000 |
---|---|---|
committer | Jamie Bullock <jamie@postlude.co.uk> | 2006-10-20 11:30:55 +0000 |
commit | a642a56300874cabc18848d29d0b8cb882fa48db (patch) | |
tree | 8c91ffbf85f6100df5801d0cefd2b64eb551d62c /xtract | |
parent | d4ef5832c3e78458b87734f6d41e10846fc6ce1c (diff) | |
download | LibXtract-a642a56300874cabc18848d29d0b8cb882fa48db.tar.gz LibXtract-a642a56300874cabc18848d29d0b8cb882fa48db.tar.bz2 LibXtract-a642a56300874cabc18848d29d0b8cb882fa48db.zip |
Added simpletest example
Diffstat (limited to 'xtract')
-rw-r--r-- | xtract/Makefile.am | 8 | ||||
-rw-r--r-- | xtract/libxtract.h | 4 |
2 files changed, 9 insertions, 3 deletions
diff --git a/xtract/Makefile.am b/xtract/Makefile.am index b29e60d..0dd9942 100644 --- a/xtract/Makefile.am +++ b/xtract/Makefile.am @@ -1,5 +1,11 @@ libxtractdir = $(includedir)/xtract +if BUILD_VECTOR +XTRACT_VECTOR = xtract_vector.h +else +XTRACT_VECTOR = +endif + libxtract_HEADERS = libxtract.h xtract_macros.h xtract_types.h xtract_delta.h \ - xtract_scalar.h xtract_vector.h + xtract_scalar.h $(XTRACT_VECTOR) diff --git a/xtract/libxtract.h b/xtract/libxtract.h index 81f261f..6b90da3 100644 --- a/xtract/libxtract.h +++ b/xtract/libxtract.h @@ -67,7 +67,7 @@ enum features_ { AVERAGE_DEVIATION, SKEWNESS, KURTOSIS, - CENTROID, + CENTROID, IRREGULARITY_K, IRREGULARITY_J, TRISTIMULUS_1, @@ -125,7 +125,7 @@ enum return_codes_ { MALLOC_FAILED, BAD_ARGV, BAD_VECTOR_SIZE, - NO_RESULT + NO_RESULT }; /** |