diff options
author | Mathis Rosenhauer <rosenhauer@dkrz.de> | 2012-09-18 22:13:13 +0200 |
---|---|---|
committer | Thomas Jahns <jahns@dkrz.de> | 2013-02-19 11:32:59 +0100 |
commit | 623dba0e720ebe7905ddb8b4340f0e719a540c24 (patch) | |
tree | 20bdd67fd8558962e152e81843b117bf703951b4 /src/Makefile.am | |
parent | 4e64405ac49b2b66408caad9dd4c6599a075b46c (diff) | |
download | libaec-623dba0e720ebe7905ddb8b4340f0e719a540c24.tar.gz libaec-623dba0e720ebe7905ddb8b4340f0e719a540c24.tar.bz2 libaec-623dba0e720ebe7905ddb8b4340f0e719a540c24.zip |
Renamed sources in autoconf files
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 5c13dee..ac90e8b 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,14 +1,12 @@ -lib_LTLIBRARIES = libae-0.0.la -libae_0_0_la_SOURCES = aee.c aee_accessors.c aed.c aee.h aee_accessors.h sz_compat.c -libae_0_0_la_LDFLAGS = -version-info 0:0 -include_HEADERS = libae.h +lib_LTLIBRARIES = libaec-0.0.la +libaec_0_0_la_SOURCES = encode.c encode_accessors.c decode.c encode.h encode_accessors.h sz_compat.c +libaec_0_0_la_LDFLAGS = -version-info 0:0 +include_HEADERS = libaec.h -bin_PROGRAMS = encode decode test_szcomp +bin_PROGRAMS = aec test_szcomp -encode_LDADD = $(lib_LTLIBRARIES) -decode_LDADD = $(lib_LTLIBRARIES) +aec_LDADD = $(lib_LTLIBRARIES) test_szcomp_LDADD = $(lib_LTLIBRARIES) -encode_SOURCES = encode.c -decode_SOURCES = decode.c +aec_SOURCES = aec.c test_szcomp_SOURCES = test_szcomp.c |