diff options
author | jofret | 2008-09-09 12:35:50 +0000 |
---|---|---|
committer | jofret | 2008-09-09 12:35:50 +0000 |
commit | e153f6f5ef78997abe9f4605356a1fe3edbfe90b (patch) | |
tree | 28f9d51c2acc84ed4437affe5a8ed1d2fc7c90e3 /src/matrixOperations/hilbert/Makefile.am | |
parent | c40f4b1f2114b1d6f8a80b13f8bd540c9702d21c (diff) | |
download | scilab2c-e153f6f5ef78997abe9f4605356a1fe3edbfe90b.tar.gz scilab2c-e153f6f5ef78997abe9f4605356a1fe3edbfe90b.tar.bz2 scilab2c-e153f6f5ef78997abe9f4605356a1fe3edbfe90b.zip |
Remove DSP in name
Diffstat (limited to 'src/matrixOperations/hilbert/Makefile.am')
-rw-r--r-- | src/matrixOperations/hilbert/Makefile.am | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/matrixOperations/hilbert/Makefile.am b/src/matrixOperations/hilbert/Makefile.am index 64f203be..0b5ca42d 100644 --- a/src/matrixOperations/hilbert/Makefile.am +++ b/src/matrixOperations/hilbert/Makefile.am @@ -10,28 +10,28 @@ ## ## -libDSPHilbert_la_CFLAGS = -I $(top_builddir)/type \ +libHilbert_la_CFLAGS = -I $(top_builddir)/type \ -I ../includes instdir = $(top_builddir)/lib -pkglib_LTLIBRARIES = libDSPHilbert.la +pkglib_LTLIBRARIES = libHilbert.la HEAD = ../includes/hilbert.h -libDSPHilbert_la_SOURCES = $(HEAD) \ +libHilbert_la_SOURCES = $(HEAD) \ shilba.c \ - dhilba.c + dhilba.c -check_PROGRAMS = testDSPHilbert +check_PROGRAMS = testHilbert -check_LDADD = libDSPHilbert.la +check_LDADD = libHilbert.la check_INCLUDES = -I $(top_builddir)/type \ -I ../includes -testDSPHilbert_SOURCES = testDSPHilbert.c -testDSPHilbert_LDADD = $(check_LDADD) -testDSPHilbert_CFLAGS = $(check_INCLUDES) +testHilbert_SOURCES = testHilbert.c +testHilbert_LDADD = $(check_LDADD) +testHilbert_CFLAGS = $(check_INCLUDES) -TESTS = testDSPHilbert +TESTS = testHilbert |