diff --git a/configure.in b/configure.in index 07e93b4..93fa9b0 100644 --- a/configure.in +++ b/configure.in @@ -16,14 +16,16 @@ dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. dnl ## Autoconf requirements -AC_INIT([eyd], [0.1], [glenux@fr.st]) + + +AC_INIT([eyd], [0.2], [glenux@fr.st]) AC_PREREQ(2.50) AC_CANONICAL_HOST AC_CANONICAL_TARGET -AM_INIT_AUTOMAKE([eyd],[0.1]) +AM_INIT_AUTOMAKE([eyd],[0.2]) #AC_CANONICAL_SYSTEM diff --git a/doxygen.conf b/doxygen.conf index c55397f..6982c44 100644 --- a/doxygen.conf +++ b/doxygen.conf @@ -17,7 +17,7 @@ # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. -PROJECT_NAME = EnlargeYourData +PROJECT_NAME = MiniFTPc # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am index deed4c5..8babeb9 100644 --- a/src/lib/Makefile.am +++ b/src/lib/Makefile.am @@ -11,6 +11,19 @@ libeyd_la_SOURCES = eyd_bitreader.cpp \ eyd_uncompressor_rle1.cpp \ eyd_compressor_rle2.cpp \ eyd_uncompressor_rle2.cpp + +libeyd_la_SOURCES += \ + eyd_bitgroup.hh \ + eyd_bitreader.hh \ + eyd_bitwriter.hh \ + eyd_compressor_rle1.hh \ + eyd_compressor_rle2.hh \ + eyd_global.hh \ + eyd.hh \ + eyd_iface.hh \ + eyd_proto.hh \ + eyd_uncompressor_rle1.hh \ + eyd_uncompressor_rle2.hh libeyd_la_CFLAGS = -DTRACE #-static @@ -24,3 +37,4 @@ libeyd_la_LDFLAGS = -version-info 3:12:1 #SQLITE3_LIBS@ LIBPCRE_LIBS@ + diff --git a/src/rle1/Makefile.am b/src/rle1/Makefile.am index 5dff133..94e1065 100644 --- a/src/rle1/Makefile.am +++ b/src/rle1/Makefile.am @@ -18,7 +18,13 @@ INCLUDES= -I../lib/ -I./ @GLIB2_CFLAGS@ @TARGET_READLINE_INC@ #eyd_INCLUDE = -eydrle_SOURCES = eydrle.cpp eydrle_init.cpp eydrle_main.cpp eydrle_compress.cpp eydrle_uncompress.cpp +eydrle_SOURCES = \ + eydrle.cpp \ + eydrle_init.cpp \ + eydrle_main.cpp \ + eydrle_compress.cpp \ + eydrle_uncompress.cpp + eydrle_SOURCES += eydrle.hh eydrle_LDADD = -leyd eydrle_LDFLAGS = @LDFLAGS@ -L../lib -L../lib/.libs diff --git a/src/rle2/Makefile.am b/src/rle2/Makefile.am index 17cdfaf..73c4925 100644 --- a/src/rle2/Makefile.am +++ b/src/rle2/Makefile.am @@ -18,7 +18,13 @@ INCLUDES= -I../lib/ -I./ @GLIB2_CFLAGS@ @TARGET_READLINE_INC@ #eyd_INCLUDE = -eydrle2_SOURCES = eydrle2.cpp eydrle2_init.cpp eydrle2_main.cpp eydrle2_compress.cpp eydrle2_uncompress.cpp +eydrle2_SOURCES = \ + eydrle2.cpp \ + eydrle2_init.cpp \ + eydrle2_main.cpp \ + eydrle2_compress.cpp \ + eydrle2_uncompress.cpp + eydrle2_SOURCES += eydrle2.hh eydrle2_LDADD = -leyd eydrle2_LDFLAGS = @LDFLAGS@ -L../lib -L../lib/.libs